fixed pom for jenkins

master
Massimiliano Assante 5 years ago
parent fd5a75915e
commit 04a53c8373

@ -2,12 +2,13 @@
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>
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.gcube.tools</groupId>
<version>1.0.0</version>
<artifactId>maven-parent</artifactId>
<version>1.1.0</version>
<relativePath />
</parent>
<groupId>org.gcube.applicationsupportlayer</groupId>
<artifactId>aslvre</artifactId>
<version>6.9.0-SNAPSHOT</version>
@ -17,9 +18,9 @@
VRE Management
</description>
<scm>
<connection>scm:svn:http://svn.d4science.research-infrastructures.eu/gcube/trunk/application-support-layer/${project.artifactId}</connection>
<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/trunk/application-support-layer/${project.artifactId}</developerConnection>
<url>http://svn.d4science.research-infrastructures.eu/gcube/trunk/application-support-layer/${project.artifactId}</url>
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/aslvre.git</connection>
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/aslvre.git</developerConnection>
<url>https://code-repo.d4science.org/gCubeSystem/aslvre</url>
</scm>
<properties>
<distroDirectory>distro</distroDirectory>
@ -88,36 +89,25 @@
</resource>
</resources>
<plugins>
<!-- SA Plugin -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<descriptors>
<descriptor>${distroDirectory}/descriptor.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<id>servicearchive</id>
<phase>install</phase>
<goals>
<goal>test-jar</goal>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
@ -144,27 +134,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>${distroDirectory}/descriptor.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>fully.qualified.MainClass</mainClass>
</manifest>
</archive>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
<version>3.1.0</version>
<executions>
<execution>
<id>servicearchive</id>
<id>generate-doc</id>
<phase>install</phase>
<goals>
<goal>single</goal>
<goal>jar</goal>
</goals>
</execution>
</executions>

Loading…
Cancel
Save