lmdb-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.deephacks.lmdb</groupId> <artifactId>lmdb-project</artifactId> <version>0.1.3</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.deephacks.lmdb</groupId> <artifactId>lmdb-project</artifactId> <version>0.1.3</version> <packaging>pom</packaging> <name>lmbd</name> <description>lmdb</description> <url>http://lmdb.deephacks.org</url> <modules> <module>lmdb</module> </modules> <issueManagement> <system>github</system> <url>https://github.com/deephacks/lmdb/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:deephacks/lmdb.git</connection> <developerConnection>scm:git:git@github.com:deephacks/lmdb.git</developerConnection> <url>scm:git:git@github.com/deephacks/lmdb</url> </scm> <licenses> <license> <name>Licensed under the OpenLDAP Public License</name> <url>http://www.openldap.org/software/release/license.html</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> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </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-surefire-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.10</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <trimStackTrace>false</trimStackTrace> <printSummary>true</printSummary> <includes> <include>**/*TestCase.java</include> <include>**/*TestSuite.java</include> <include>**/*Test.java</include> </includes> <useFile>true</useFile> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.3.2</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://lmdb.deephacks.org</url> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.8</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> <execution> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> </execution> </executions> </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> <profile> <id>osx64</id> <modules> <module>lmdb-osx64</module> </modules> </profile> <profile> <id>linux64</id> <modules> <module>lmdb-linux64</module> </modules> </profile> <profile> <id>android</id> <modules> <module>lmdb-android</module> </modules> </profile> <profile> <id>win64</id> <modules> <module>lmdb-win64</module> </modules> </profile> </profiles> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>