Thanks to visit codestin.com
Credit goes to jogamp.org

summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml97
1 files changed, 2 insertions, 95 deletions
diff --git a/pom.xml b/pom.xml
index 577a52c..c2d080d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
<groupId>org.jogamp.java3d</groupId>
<artifactId>vecmath</artifactId>
- <version>1.7.1</version>
+ <version>1.7.2</version>
<name>Vector Maths Library</name>
<description>A Library supporting Vector Maths for the Java Platform</description>
@@ -78,9 +78,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <!-- Deploy to OSS Sonatype repository by default when releasing. -->
- <releaseProfiles>sonatype-oss-release</releaseProfiles>
-
</properties>
<build>
@@ -140,95 +137,5 @@
</plugin>
</plugins>
</build>
-
- <profiles>
- <!-- This profile enables releasing to the OSS Sonatype repository. -->
- <profile>
- <id>sonatype-oss-release</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <version>1.6.7</version>
- <extensions>true</extensions>
- <configuration>
- <serverId>sonatype-nexus-releases</serverId>
- <nexusUrl>https://oss.sonatype.org/</nexusUrl>
- <autoReleaseAfterClose>true</autoReleaseAfterClose>
- <stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
- <stagingProgressPauseDurationSeconds>12</stagingProgressPauseDurationSeconds>
- <!--
- By having no explicit stagingProfileId, we use
- Staging V2 in "auto" mode, profile will be
- matched server side
- -->
- </configuration>
- </plugin>
- <plugin>
- <inherited>true</inherited>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.8.2</version>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.5</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <useAgent>true</useAgent>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.5.3</version>
- </plugin>
- <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>3.1.1</version>
- <configuration>
- <additionalJOption>-Xdoclint:none</additionalJOption>
- <links>
- <link>http://docs.oracle.com/javase/8/docs/api/</link>
- </links>
- </configuration>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
+
</project>