flow-control
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.axoniq</groupId> <artifactId>flow-control</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.axoniq</groupId> <artifactId>flow-control</artifactId> <version>1.2</version> <name>AxonIQ Flow Control</name> <description>AxonIQ Flow Control library</description> <modules> <module>grpc-manual-flow-control</module> </modules> <packaging>pom</packaging> <inceptionYear>2021</inceptionYear> <url>https://github.com/AxonIQ/flow-control</url> <issueManagement> <system>GitHub</system> <url>https://github.com/AxonIQ/flow-control/issues</url> </issueManagement> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <properties> <encoding>UTF-8</encoding> <reactive.streams.version>1.0.4</reactive.streams.version> <grpc.version>1.47.0</grpc.version> <slf4j.version>1.7.36</slf4j.version> <testng.version>7.5</testng.version> <reactor.version>3.4.24</reactor.version> <testcontainers.version>1.14.1</testcontainers.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.axoniq</groupId> <artifactId>grpc-manual-flow-control</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> <version>${grpc.version}</version> </dependency> <dependency> <groupId>org.reactivestreams</groupId> <artifactId>reactive-streams</artifactId> <version>${reactive.streams.version}</version> </dependency> <dependency> <groupId>org.reactivestreams</groupId> <artifactId>reactive-streams-tck</artifactId> <version>${reactive.streams.version}</version> <exclusions> <exclusion> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>${reactor.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> </dependencies> </dependencyManagement> <scm> <connection>scm:git:https://github.com/AxonIQ/flow-control.git</connection> <developerConnection>scm:git:https://github.com/AxonIQ/flow-control.git</developerConnection> <url>https://github.com/AxonIQ/flow-control</url> <tag>flow-control-1.2</tag> </scm> <distributionManagement> <snapshotRepository> <id>sonatype</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <uniqueVersion>true</uniqueVersion> </snapshotRepository> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> <uniqueVersion>false</uniqueVersion> </repository> </distributionManagement> <repositories> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots> <enabled>true</enabled> <checksumPolicy>fail</checksumPolicy> <updatePolicy>always</updatePolicy> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> </repositories> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <!--suppress MavenModelInspection --> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <organization> <name>AxonIQ BV</name> <url>https://axoniq.io</url> </organization> <developers> <developer> <name>Milan Savic</name> <email>milan.savic@axoniq.io</email> <organization>AxonIQ</organization> <organizationUrl>https://axoniq.io</organizationUrl> <roles> <role>Developer</role> </roles> </developer> <developer> <name>Sara Pellegrini</name> <email>sara.pellegrini@axoniq.io</email> <organization>AxonIQ</organization> <organizationUrl>https://axoniq.io</organizationUrl> <roles> <role>Developer</role> </roles> </developer> <developer> <name>Stefan Dragisic</name> <email>stefan.dragisic@axoniq.io</email> <organization>AxonIQ</organization> <organizationUrl>https://axoniq.io</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> </project>