reactor-flow
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.juliengalet</groupId> <artifactId>reactor-flow</artifactId> <version>1.2.0</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.github.juliengalet</groupId> <artifactId>reactor-flow</artifactId> <version>1.2.0</version> <name>Reactor flow</name> <description> A library to execute flows with reactor. Inspired by https://github.com/j-easy/easy-flows project. </description> <url>https://github.com/juliengalet/reactor-flow</url> <scm> <url>git@github.com:juliengalet/reactor-flow.git</url> <connection>scm:git:https://github.com/juliengalet/reactor-flow</connection> <developerConnection>scm:git:https://github.com/juliengalet/reactor-flow</developerConnection> <tag>v1.2.0</tag> </scm> <licenses> <license> <name>MIT License</name> <url>https://github.com/juliengalet/reactor-flow/blob/master/LICENSE.txt</url> </license> </licenses> <ciManagement> <system>Github Actions</system> <url>https://github.com/juliengalet/reactor-flow/actions</url> </ciManagement> <developers> <developer> <email>galet.julien@gmail.com</email> <id>juliengalet</id> <name>Julien GALET</name> </developer> </developers> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <java.version>11</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <reactor.version>3.4.12</reactor.version> <junit.version>5.8.1</junit.version> <assertj.version>3.21.0</assertj.version> <jacoco.version>0.8.5</jacoco.version> <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <maven-site-plugin.version>3.7.1</maven-site-plugin.version> <maven-project-info-reports-plugin.version>3.1.1</maven-project-info-reports-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <sonar.projectKey>juliengalet_reactor-flow</sonar.projectKey> <sonar.organization>juliengalet</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/site/jacoco/jacoco.xml </sonar.coverage.jacoco.xmlReportPaths> </properties> <dependencies> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>${reactor.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>${reactor.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src/main/java</sourceDirectory> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <forceJavacCompilerUse>true</forceJavacCompilerUse> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>jacoco-initialize</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>jacoco-site</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>github-package-deploy</id> <activation> <property> <name>!mavenCentralDeploy</name> </property> </activation> <distributionManagement> <snapshotRepository> <id>github</id> <name>GitHub snapshot</name> <url>https://maven.pkg.github.com/juliengalet/reactor-flow</url> <uniqueVersion>true</uniqueVersion> </snapshotRepository> <repository> <id>github</id> <name>GitHub release</name> <url>https://maven.pkg.github.com/juliengalet/reactor-flow</url> <uniqueVersion>false</uniqueVersion> </repository> </distributionManagement> </profile> <profile> <id>maven-central-deploy</id> <activation> <property> <name>mavenCentralDeploy</name> <value>true</value> </property> </activation> <distributionManagement> <snapshotRepository> <id>maven-central</id> <name>Maven central snapshots</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> <uniqueVersion>true</uniqueVersion> </snapshotRepository> <repository> <id>maven-central</id> <name>Maven central releases</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> <uniqueVersion>false</uniqueVersion> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>