rxlmdb-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.deephacks.rxlmdb</groupId> <artifactId>rxlmdb-project</artifactId> <version>0.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- vi:ts=2:sw=2:expandtab: --> <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.deephacks.rxlmdb</groupId> <artifactId>rxlmdb-project</artifactId> <name>rxlmdb-project</name> <version>0.0.4</version> <packaging>pom</packaging> <description>LMDB for RxJava</description> <url>http://rxlmdb.deephacks.org</url> <inceptionYear>2015</inceptionYear> <mailingLists> <mailingList> <name>Development List</name> <post>rxlmdb-dev@googlegroups.com</post> </mailingList> <mailingList> <name>User List</name> <post>rxlmdb-user@googlegroups.com</post> </mailingList> </mailingLists> <issueManagement> <system>github</system> <url>https://github.com/deephacks/RxLMDB/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:deephacks/RxLMDB.git</connection> <developerConnection>scm:git:git@github.com:deephacks/RxLMDB.git</developerConnection> <url>scm:git:git@github.com/deephacks/RxLMDB</url> <tag>0.0.4</tag> </scm> <licenses> <license> <name>Apache License</name> <url>license.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Kristoffer Sjogren</name> <id>krisskross</id> <email>stoffe -at- gmail.com</email> <organization /> <roles> <role>Developer</role> </roles> <url>http://stoffe.deephacks.org/</url> <timezone>+1</timezone> </developer> </developers> <repositories> <repository> <id>jfrog</id> <url>https://oss.jfrog.org/libs-snapshot</url> </repository> </repositories> <properties> <lmdbjni-version>0.4.6</lmdbjni-version> <aeron-version>0.2.2</aeron-version> <reactive-streams-version>1.0.0</reactive-streams-version> <rxsocket-version>0.0.1</rxsocket-version> <rxsocket-aeron-version>0.0.1-20151126.205252-9</rxsocket-aeron-version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <modules> <module>rxlmdb</module> <module>rxlmdb-grpc</module> <!--<module>rxlmdb-aeron</module>--> <module>jmh</module> </modules> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerVersion>1.8</compilerVersion> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <arguments>-P sign-artifacts</arguments> <autoVersionSubmodules>true</autoVersionSubmodules> <allowTimestampedSnapshots>false</allowTimestampedSnapshots> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.4</version> <configuration> <archive> <manifestEntries> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Specification-Vendor>deephacks</Specification-Vendor> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor>deephacks</Implementation-Vendor> <Implementation-Vendor-Id>org.deephacks</Implementation-Vendor-Id> <url>http://rxlmdb.deephacks.org</url> </manifestEntries> </archive> </configuration> </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</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>0.26</version> <scope>test</scope> </dependency> <dependency> <groupId>org.deephacks.lmdbjni</groupId> <artifactId>lmdbjni-linux64</artifactId> <version>${lmdbjni-version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> <execution> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> </execution> </executions> <configuration> <verbose>false</verbose> </configuration> </plugin> <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> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>