quickfixj-infinispan
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.darioajr</groupId> <artifactId>quickfixj-infinispan</artifactId> <version>1.0.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.darioajr</groupId> <artifactId>quickfixj-infinispan</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Infinispan QuickFIX/J Plugin</name> <description>Plugin for persistence of QuickFIX/J sessions in Infinispan</description> <url>https://github.com/darioajr/infinispan-quickfixj-plugin</url> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> <license> <name>Eclipse Public License 2.0</name> <url>https://raw.githubusercontent.com/junit-team/junit5/refs/heads/main/LICENSE.md</url> </license> <license> <name>The QuickFIX Software License, Version 1.0</name> <url>http://www.quickfixj.org/documentation/license.html</url> </license> </licenses> <developers> <developer> <id>darioajr</id> <name>Dario Alves Junior</name> <email>darioajr@gmail.com</email> </developer> </developers> <issueManagement> <system>github issues</system> <url>https://github.com/darioajr/infinispan-quickfixj-plugin/issues</url> </issueManagement> <scm> <url>https://github.com/darioajr/infinispan-quickfixj-plugin</url> <connection>scm:git:https://github.com/darioajr/infinispan-quickfixj-plugin.git</connection> <developerConnection>scm:git:https://github.com/darioajr/infinispan-quickfixj-plugin.git</developerConnection> <tag>main</tag> </scm> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <maven.compiler.release>21</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <infinispan.version>15.1.6.Final</infinispan.version> <slf4j.version>2.0.16</slf4j.version> <junit.version>5.11.3</junit.version> <mockito.version>5.14.2</mockito.version> <maven.version>3.9.9</maven.version> <maven.central.version>0.8.0</maven.central.version> <maven.surefire.plugin.version>3.5.2</maven.surefire.plugin.version> <maven.gpg.plugin.version>3.2.7</maven.gpg.plugin.version> <maven.release.plugin.version>3.1.1</maven.release.plugin.version> <maven.checkstyle.plugin.version>3.6.0</maven.checkstyle.plugin.version> <maven.deploy.plugin.version>3.1.3</maven.deploy.plugin.version> <maven.javadoc.plugin.version>3.11.2</maven.javadoc.plugin.version> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> <checkstyle.version>10.21.1</checkstyle.version> <jacoco.maven.plugin.version>0.8.12</jacoco.maven.plugin.version> <quickfixj.version>2.3.2</quickfixj.version> <license.maven.plugin.version>2.5.0</license.maven.plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <sonar.organization>darioajr</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-bom</artifactId> <version>${infinispan.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- QuickFIX/J Core --> <dependency> <groupId>org.quickfixj</groupId> <artifactId>quickfixj-core</artifactId> <version>${quickfixj.version}</version> </dependency> <dependency> <groupId>org.quickfixj</groupId> <artifactId>quickfixj-messages-all</artifactId> <version>${quickfixj.version}</version> </dependency> <!-- Infinispan --> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-core</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-client-hotrod</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons</artifactId> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-server-testdriver-junit5</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> </profile> </profiles> <build> <plugins> <!-- RELEASE --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>v@{project.version}</tagNameFormat> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <!-- SIGN --> <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> </execution> </executions> </plugin> <!-- MAVEN CENTRAL - SONATYPE --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${maven.central.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> <!-- SONAR --> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>5.0.0.4389</version> </plugin> <!-- CODECOV - JACOCO --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.maven.plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <!-- DEPLOY --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven.deploy.plugin.version}</version> </plugin> <!-- JAVADOC --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <configuration> <excludePackageNames>io.github.darioajr.quickfixj.examples:io.github.darioajr.quickfixj.integration:io.github.darioajr.quickfixj.store*test*</excludePackageNames> <sourcepath>${project.basedir}/src/main/java</sourcepath> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>${maven.compiler.release}</release> <compilerArgs> <arg>--enable-preview</arg> <arg>-Xlint:-preview</arg> </compilerArgs> <showWarnings>false</showWarnings> <excludes> <exclude>**/examples/**</exclude> </excludes> </configuration> </plugin> <!-- JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <excludes> <exclude>**/examples/**</exclude> <exclude>**/test/**</exclude> <exclude>**/integration/**</exclude> </excludes> </configuration> </plugin> <!-- SUREFIRE --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M9</version> </plugin> <!-- SOURCES --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <configuration> <excludes> <exclude>**/examples/**</exclude> <exclude>**/test/**</exclude> <exclude>**/integration/**</exclude> </excludes> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- LICENCES --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license.maven.plugin.version}</version> </plugin> </plugins> </build> </project>