xpring4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.xpring</groupId> <artifactId>xpring4j</artifactId> <version>6.1.1</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.xpring</groupId> <artifactId>xpring4j</artifactId> <version>6.1.1</version> <name>xpring4j</name> <url>https://github.com/xpring-eng/xpring4j</url> <description> Xpring4j provides a Java based SDK for interacting with Xpring Platform (XRP/ILP) </description> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <grpc.version>1.31.1</grpc.version> <protobuf.version>3.13.0</protobuf.version> <slf4j.version>1.7.30</slf4j.version> <feign.version>11.0</feign.version> <graalvm.version>20.2.0</graalvm.version> <compiler.dir>${project.build.directory}/compiler</compiler.dir> <!-- org.apache.maven.plugins:maven-checkstyle-plugin --> <checkstyle.config.location>checkstyle.xml</checkstyle.config.location> <checkstyle.violationSeverity>error</checkstyle.violationSeverity> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- mvn clean install = run UT and IT --> <!-- mvn clean install -DskipTests = don't run UT or IT --> <!-- mvn clean install -DskipITs = run UT but NOT IT --> <!-- mvn clean install -DskipTests -PintegrationTests = run IT but NOT UT --> <skipITs>false</skipITs> <swagger-core-version>2.1.4</swagger-core-version> <okhttp-version>2.7.5</okhttp-version> <gson-version>2.8.6</gson-version> <gson-fire-version>1.8.4</gson-fire-version> <threetenbp-version>1.4.4</threetenbp-version> </properties> <scm> <connection>scm:git:git@github.com:xpring-eng/xpring4j.git</connection> <url>scm:git:git@github.com:xpring-eng/xpring4j.git</url> <developerConnection>scm:git:git@github.com:xpring-eng/xpring4j.git</developerConnection> </scm> <licenses> <license> <name>MIT</name> <url>http://github.com/xpring-eng/xpring4j/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>keefertaylor</id> <name>Keefer Taylor</name> <email>keefer@ripple.com</email> <url>http://xpring.io</url> <roles> <role>developer</role> </roles> <timezone>-3</timezone> </developer> </developers> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.graalvm.js</groupId> <artifactId>js</artifactId> </dependency> <dependency> <groupId>org.graalvm.js</groupId> <artifactId>js-scriptengine</artifactId> </dependency> <dependency> <groupId>org.graalvm.truffle</groupId> <artifactId>truffle-api</artifactId> </dependency> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.8.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.10.3</version> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations</artifactId> <version>${swagger-core-version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> <version>${okhttp-version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>logging-interceptor</artifactId> <version>${okhttp-version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson-version}</version> </dependency> <dependency> <groupId>io.gsonfire</groupId> <artifactId>gson-fire</artifactId> <version>${gson-fire-version}</version> </dependency> <dependency> <groupId>org.threeten</groupId> <artifactId>threetenbp</artifactId> <version>${threetenbp-version}</version> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8</artifactId> <version>2.27.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-jackson</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <version>${grpc.version}</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> <version>${grpc.version}</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> <version>${grpc.version}</version> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>4.0.3</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-testing</artifactId> <version>${grpc.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.16.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.graalvm.js</groupId> <artifactId>js</artifactId> <version>${graalvm.version}</version> </dependency> <dependency> <groupId>org.graalvm.js</groupId> <artifactId>js-scriptengine</artifactId> <version>${graalvm.version}</version> </dependency> <dependency> <groupId>org.graalvm.truffle</groupId> <artifactId>truffle-api</artifactId> <version>${graalvm.version}</version> </dependency> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <version>2.8.8</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.interledger</groupId> <artifactId>spsp-core</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.5.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.swagger.codegen.v3</groupId> <artifactId>swagger-codegen-maven-plugin</artifactId> <version>3.0.21</version> </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-core</artifactId> <version>${feign.version}</version> </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-jackson</artifactId> <version>${feign.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <resources> <resource> <directory>src/main/resources/</directory> </resource> </resources> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.6.2</version> </extension> </extensions> <plugins> <!-- org.apache.maven.plugins:maven-checkstyle-plugin --> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <!-- Lock down plugin version for build reproducibility --> <version>3.1.1</version> <inherited>true</inherited> <configuration> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <linkXRef>false</linkXRef> <excludes>**/generated-*sources/**/*</excludes> <sourceDirectories> <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> </sourceDirectories> <testSourceDirectories> <testSourceDirectory>${project.build.testSourceDirectory}</testSourceDirectory> </testSourceDirectories> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> <dependencies> <!-- Update Checkstyle version used --> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>8.36</version> </dependency> </dependencies> <executions> <execution> <id>verify</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> <configuration> <failsOnError>true</failsOnError> <failOnViolation>true</failOnViolation> <violationSeverity>warning</violationSeverity> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <useSystemClassLoader>false</useSystemClassLoader> <excludes> <exclude>**/IlpIntegrationTests.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <skipITs>${skipITs}</skipITs> <argLine>${failsafe.argLine}</argLine> <includes> <include>**/IlpIntegrationTests.java</include> </includes> <excludes> <exclude>**/DefaultIlpClientTest.java</exclude> <exclude>**/xrpl*/**</exclude> </excludes> </configuration> <executions> <execution> <id>integration-tests</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <version>0.8.5</version> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <excludes> <exclude>io.xpring.proto</exclude> <exclude>org.interledger.spsp.server.grpc</exclude> <exclude>io.xpring.proto</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.6.1</version> <configuration> <protocExecutable>/usr/local/bin/protoc</protocExecutable> <protocArtifact> com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier} </protocArtifact> <pluginId>grpc-java</pluginId> <pluginArtifact> io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier} </pluginArtifact> </configuration> <executions> <execution> <id>Compile rippled protocol buffers</id> <configuration> <clearOutputDirectory>false</clearOutputDirectory> <protoSourceRoot>${project.basedir}/rippled/src/ripple/proto</protoSourceRoot> </configuration> <goals> <goal>compile</goal> <goal>compile-custom</goal> <goal>test-compile</goal> </goals> </execution> <execution> <id>Compile Hermes protocol buffers</id> <configuration> <clearOutputDirectory>false</clearOutputDirectory> <protoSourceRoot>${project.basedir}/hermes-ilp/protocol-buffers/proto</protoSourceRoot> </configuration> <goals> <goal>compile</goal> <goal>compile-custom</goal> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <excludePackageNames> io.xpring.proto, org.xrpl.rpc.v1, org.interledger.spsp.server.grpc </excludePackageNames> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.swagger.codegen.v3</groupId> <artifactId>swagger-codegen-maven-plugin</artifactId> <version>3.0.21</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <inputSpec>${project.basedir}/pay-id-api-spec/pay-id.v1.yml</inputSpec> <language>java</language> <apiPackage>io.xpring.payid.generated.api</apiPackage> <invokerPackage>io.xpring.payid.generated</invokerPackage> <modelPackage>io.xpring.payid.generated.model</modelPackage> <generateApiTests>false</generateApiTests> <generateModelTests>false</generateModelTests> <configOptions> <sourceFolder>src/gen/java/main</sourceFolder> </configOptions> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>xpring4j@ripple.com</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>integrationTests</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <skipITs>false</skipITs> <argLine>${failsafe.argLine}</argLine> <includes> <include>**/IlpIntegrationTests.java</include> </includes> <excludes> <exclude>**/DefaultIlpClientTest.java</exclude> <exclude>**/xrpl*/**</exclude> </excludes> </configuration> <executions> <execution> <id>integration-tests</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk11</id> <activation> <jdk>[11,</jdk> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <argLine>-XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI --module-path=${compiler.dir} --upgrade-module-path=${compiler.dir}/compiler.jar:${compiler.dir}/compiler-management.jar </argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.2</version> <executions> <execution> <id>copy</id> <phase>process-test-classes</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.graalvm.compiler</groupId> <artifactId>compiler</artifactId> <version>${graalvm.version}</version> <type>jar</type> <overWrite>true</overWrite> <destFileName>compiler.jar</destFileName> </artifactItem> <artifactItem> <groupId>org.graalvm.compiler</groupId> <artifactId>compiler-management</artifactId> <version>${graalvm.version}</version> <type>jar</type> <overWrite>true</overWrite> <destFileName>compiler-management.jar</destFileName> </artifactItem> <artifactItem> <groupId>org.graalvm.truffle</groupId> <artifactId>truffle-api</artifactId> <version>${graalvm.version}</version> <type>jar</type> <overWrite>true</overWrite> <destFileName>truffle-api.jar</destFileName> </artifactItem> <artifactItem> <groupId>org.graalvm.sdk</groupId> <artifactId>graal-sdk</artifactId> <version>${graalvm.version}</version> <type>jar</type> <overWrite>true</overWrite> <destFileName>graal-sdk.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${compiler.dir}</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>ossrh</id> <name>ossrh</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <name>ossrh</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>