Version/pom.xml

130 lines
3.7 KiB
XML
Raw Normal View History

2012-10-04 21:53:49 +02:00
<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.github.zafarkhaja</groupId>
2013-10-14 20:38:45 +02:00
<artifactId>java-semver</artifactId>
2015-03-19 19:52:20 +01:00
<version>0.10.0-SNAPSHOT</version>
2012-10-04 21:53:49 +02:00
<packaging>jar</packaging>
2013-10-14 20:38:45 +02:00
<name>Java SemVer</name>
2012-10-04 21:53:49 +02:00
<description>Java implementation of the SemVer Specification</description>
2015-03-19 19:38:27 +01:00
<url>https://github.com/zafarkhaja/jsemver</url>
2012-10-04 21:53:49 +02:00
<licenses>
<license>
<name>The MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>zafarkhaja</id>
<name>Zafar Khaja</name>
<email>zafarkhaja@gmail.com</email>
2015-03-19 19:38:27 +01:00
<timezone>+3</timezone>
2012-10-04 21:53:49 +02:00
</developer>
</developers>
<scm>
2015-03-19 19:38:27 +01:00
<url>https://github.com/zafarkhaja/jsemver</url>
<connection>scm:git:git://github.com/zafarkhaja/jsemver.git</connection>
<developerConnection>scm:git:ssh://git@github.com/zafarkhaja/jsemver.git</developerConnection>
2012-10-04 21:53:49 +02:00
</scm>
2016-10-24 20:51:54 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2012-10-04 21:53:49 +02:00
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2015-03-19 19:22:45 +01:00
<version>4.12</version>
2012-10-04 21:53:49 +02:00
<scope>test</scope>
</dependency>
</dependencies>
2013-11-16 18:12:59 +01:00
2016-10-24 20:51:54 +02:00
<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>
2013-11-16 18:12:59 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2016-10-24 20:51:54 +02:00
<version>3.5.1</version>
2013-11-16 18:12:59 +01:00
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArgument>-Xlint:all</compilerArgument>
2013-11-16 18:12:59 +01:00
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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.10.4</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<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.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2012-10-04 21:53:49 +02:00
</project>