META-INF.maven.com.blogspot.mydailyjava.weak-lock-free.pom.xml Maven / Gradle / Ivy
<?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>com.blogspot.mydailyjava</groupId> <artifactId>weak-lock-free</artifactId> <version>0.18</version> <packaging>bundle</packaging> <inceptionYear>2016</inceptionYear> <name>Weakly referenced lock-free data structures</name> <description>Implementation of a concurrent map with weak keys and a detached thread local storage.</description> <url>https://github.com/raphw/weak-lock-free</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>raphw</id> <name>Rafael Winterhalter</name> <email>[email protected]</email> <url>http://rafael.codes</url> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <!-- OSS parent for deployment to Maven Central --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <issueManagement> <system>github.com</system> <url>https://github.com/raphw/weak-lock-free/issues</url> </issueManagement> <scm> <connection>scm:git:[email protected]:raphw/weak-lock-free.git</connection> <developerConnection>scm:git:[email protected]:raphw/weak-lock-free.git</developerConnection> <url>[email protected]:raphw/weak-lock-free.git</url> <tag>weak-lock-free-0.18</tag> </scm> <distributionManagement> <repository> <id>bintray</id> <url>https://api.bintray.com/maven/raphw/maven/weak-lock-free</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <inherited>true</inherited> <configuration> <source>1.6</source> <target>1.6</target> <encoding>utf-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>extras,gpg</releaseProfiles> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.1</version> <extensions>true</extensions> <configuration> <instructions> <Export-Package>com.blogspot.mydailyjava.weaklockfree</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>extras</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>gpg</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>