Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
App Blocks
Commits
0633ed33
Commit
0633ed33
authored
Apr 22, 2017
by
Matija Obreza
Browse files
Deployment to Sonatype with nexus-staging-maven-plugin
parent
c9944890
Changes
2
Hide whitespace changes
Inline
Side-by-side
parent/pom.xml
View file @
0633ed33
...
...
@@ -37,6 +37,9 @@
<log4j.version>
1.2.17
</log4j.version>
<junit.version>
4.12
</junit.version>
<maven-gpg-plugin.version>
1.5
</maven-gpg-plugin.version>
<nexus-staging-maven-plugin.version>
1.6.8
</nexus-staging-maven-plugin.version>
<aspectj.version>
1.7.2
</aspectj.version>
<jackson.version>
2.7.7
</jackson.version>
<spring.version>
4.3.2.RELEASE
</spring.version>
...
...
@@ -61,16 +64,41 @@
<build>
<plugins>
<!-- do not deploy artifacts by default -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-gpg-plugin
</artifactId>
<version>
${maven-gpg-plugin.version}
</version>
<executions>
<execution>
<id>
sign-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
sign
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.sonatype.plugins
</groupId>
<artifactId>
nexus-staging-maven-plugin
</artifactId>
<version>
${nexus-staging-maven-plugin.version}
</version>
<extensions>
true
</extensions>
<configuration>
<serverId>
ossrh
</serverId>
<nexusUrl>
https://oss.sonatype.org/
</nexusUrl>
<autoReleaseAfterClose>
true
</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- do not deploy artifacts by default -->
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>${skip.deploy.artifact}</skip>
</configuration>
</plugin>
<!--buildnumber-maven-plugin-->
</plugin>
-->
<!--buildnumber-maven-plugin
-->
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
buildnumber-maven-plugin
</artifactId>
...
...
@@ -90,7 +118,7 @@
<doUpdate>
false
</doUpdate>
</configuration>
</plugin>
<!--maven-compiler-plugin-->
<!--maven-compiler-plugin
-->
<plugin>
<inherited>
true
</inherited>
<artifactId>
maven-compiler-plugin
</artifactId>
...
...
@@ -103,7 +131,7 @@
<showWarnings>
true
</showWarnings>
</configuration>
</plugin>
<!--maven-surefire-plugin-->
<!--maven-surefire-plugin
-->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
...
...
pom.xml
View file @
0633ed33
...
...
@@ -48,8 +48,6 @@
</issueManagement>
<properties>
<deploy-plugin.version>
2.8.2
</deploy-plugin.version>
</properties>
<modules>
...
...
@@ -77,7 +75,7 @@
</execution>
</executions>
<configuration>
<check/>
<check
/>
<formats>
<format>
html
</format>
</formats>
...
...
@@ -89,11 +87,6 @@
</pluginManagement>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-deploy-plugin
</artifactId>
<version>
${deploy-plugin.version}
</version>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-release-plugin
</artifactId>
...
...
@@ -104,7 +97,7 @@
<tagNameFormat>
application-blocks-@{project.version}
</tagNameFormat>
</configuration>
</plugin>
<!--cobertura-maven-plugin-->
<!--cobertura-maven-plugin
-->
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
cobertura-maven-plugin
</artifactId>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment