aerospike-helper-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.aerospike</groupId> <artifactId>aerospike-helper-java</artifactId> <version>1.2.3</version> </dependency>
<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>com.aerospike</groupId> <artifactId>aerospike-helper-java</artifactId> <version>1.2.3</version> <name>aerospike-helper-java</name> <organization> <name>Aerospike Inc.</name> <url>http://www.aerospike.com</url> </organization> <description>Helper classes including predicates for Spring Data and Spark</description> <url>http://github.com/aerospike/aerospike-helper</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>Peter Milne</id> <name>Peter Milne</name> <email>peter@aerospike.com</email> <url>http://www.aerospike.com</url> <organization>Aerospike Inc.</organization> <organizationUrl>http://www.aerospike.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>-6</timezone> </developer> <developer> <id>Michael Zhang</id> <name>Michael Zhang</name> <email>mzhang@aerospike.com</email> <url>http://www.aerospike.com</url> <organization>Aerospike Inc.</organization> <organizationUrl>http://www.aerospike.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>-8</timezone> </developer> <developer> <id>Jeff Boone</id> <name>Jeff Boone</name> <email>jboone@aerospike.com</email> <url>http://www.aerospike.com</url> <organization>Aerospike Inc.</organization> <organizationUrl>http://www.aerospike.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>-8</timezone> </developer> </developers> <scm> <connection>scm:git:git://github.com/aerospike/aerospike-helper.git</connection> <developerConnection>scm:git:ssh://git@github.com:aerospike/aerospike-helper.git</developerConnection> <url>https://github.com/aerospike/aerospike-helper</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <!-- Aerospike client. --> <dependency> <groupId>com.aerospike</groupId> <artifactId>aerospike-client</artifactId> <version>[4.1.4,)</version> </dependency> <!-- Apache command line parser. --> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> <scope>provided</scope> </dependency> <!-- Log4j. --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>[1.2.14,)</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>[1.7.25,)</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.9.3</version> <scope>provided</scope> </dependency> </dependencies> <build> <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <finalName>${project.artifactId}-${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> </configuration> <executions> <execution> <id>make-my-jar-with-dependencies</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</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>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>${project.basedir}/src/main/java</directory> <includes> <include>**/*.java</include> <include>**/*.properties</include> </includes> </resource> <resource> <directory>${project.basedir}/src/main/lua</directory> <includes> <include>**/*.lua</include> </includes> </resource> </resources> </build> </project>