openfeed-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openfeed</groupId> <artifactId>openfeed-client</artifactId> <version>1.0.17</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.openfeed</groupId> <artifactId>openfeed-client</artifactId> <name>openfeed-client</name> <version>1.0.17</version> <description>Openfeed Java Client</description> <url>https://github.com/openfeed-org/sdk-java</url> <developers> <developer> <id>openfeed.org</id> <name>Openfeed</name> <email>http://www.openfeed.org/</email> </developer> </developers> <licenses> <license> <name>The MIT License</name> <url>http://www.opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/openfeed-org/sdk-java.git</connection> <developerConnection>scm:git:ssh://git@github.com/openfeed-org/sdk-java.git</developerConnection> <tag>openfeed-client-1.0.17</tag> <url>https://github.com/openfeed-org/sdk-java</url> </scm> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${projectJavaVersion}</source> <target>${projectJavaVersion}</target> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.6.1</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>detect</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>1.4.2</version> <executions> <execution> <id>proto-instrument</id> <phase>generate-sources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>https://raw.githubusercontent.com/openfeed-org/proto/master/openfeed_instrument.proto</url> <outputDirectory>proto</outputDirectory> <skipCache>true</skipCache> <overwrite>true</overwrite> </configuration> </execution> <execution> <id>proto-messages</id> <phase>generate-sources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>https://raw.githubusercontent.com/openfeed-org/proto/master/openfeed.proto</url> <outputDirectory>proto</outputDirectory> <skipCache>true</skipCache> <overwrite>true</overwrite> </configuration> </execution> <execution> <id>proto-api</id> <phase>generate-sources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>https://raw.githubusercontent.com/openfeed-org/proto/master/openfeed_api.proto</url> <outputDirectory>proto</outputDirectory> <skipCache>true</skipCache> <overwrite>true</overwrite> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.6.1</version> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> <protoSourceRoot>proto</protoSourceRoot> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Main-Class>${mainClass}</Main-Class> <Build-Date>${maven.build.timestamp}</Build-Date> <Implementation-Vendor>Barchart</Implementation-Vendor> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Maven-Artifact>${project.groupId}:${project.artifactId}:${project.version}</Maven-Artifact> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <transformers> <transformer> <mainClass>${mainClass}</mainClass> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--no-tty</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.12.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.9</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.3.14</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.agrona</groupId> <artifactId>agrona</artifactId> <version>1.23.1</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-bom</artifactId> <version>4.1.112.Final</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> <version>2.1.12</version> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.11.0</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <repository> <id>barchart-nexus-releases</id> <name>Barchart Nexus Releases</name> <url>${barchartReleaseURL}</url> </repository> <snapshotRepository> <id>barchart-nexus-snapshots</id> <name>Barchart Nexus Snapshots</name> <url>${barchartSnapshotsURL}</url> </snapshotRepository> </distributionManagement> <properties> <mainClass>org.openfeed.client.examples.OpenfeedClientExampleMain</mainClass> <barchartArchonURL>${barchartNexusURL}/content/groups/archon</barchartArchonURL> <projectJavaVersion>13</projectJavaVersion> <barchartSnapshotsURL>${barchartNexusURL}/content/repositories/snapshots</barchartSnapshotsURL> <barchartNexusURL>https://nexus.barchart.com</barchartNexusURL> <protobuf.version>4.28.3</protobuf.version> <barchartReleaseURL>${barchartNexusURL}/content/repositories/releases</barchartReleaseURL> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>