skipped tests by default and moved gpg signing to sign-profile

This commit is contained in:
Kamran 2012-09-29 12:35:34 +01:00
parent ac8a4c69cc
commit 9634674b7a

52
pom.xml
View File

@ -1,15 +1,18 @@
<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">
<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.kamranzafar</groupId>
<artifactId>jtar</artifactId>
<name>JTar</name>
<version>2.1-SNAPSHOT</version>
<description>Java Tar API</description>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<developers>
<developer>
<id>xeus.man</id>
@ -21,6 +24,7 @@
</roles>
</developer>
</developers>
<licenses>
<license>
<name>Apache Software License</name>
@ -29,15 +33,18 @@
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Kamran Zafar</name>
<url>http://kamranzafar.org</url>
</organization>
<scm>
<connection>scm:git:git@github.com:kamranzafar/jtar.git</connection>
<developerConnection>scm:git:git@github.com:kamranzafar/jtar.git</developerConnection>
<url>git@github.com:kamranzafar/jtar.git</url>
</scm>
<build>
<sourceDirectory>${basedir}/src/main/java
</sourceDirectory>
@ -77,19 +84,15 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
@ -98,4 +101,31 @@
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<skipTests>true</skipTests>
</properties>
</project>