diff options
author | Henri Sara <hesara@vaadin.com> | 2016-04-13 15:12:45 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-04-13 13:08:34 +0000 |
commit | 0a0d1344682754c46ca74172090f85bbc9378a1f (patch) | |
tree | 016e5321a38cad79fe5fc5bb8f1b533855da915b /buildhelpers | |
parent | 980f879176696906c25e985e4f7c8e3bdc04258d (diff) | |
download | vaadin-framework-0a0d1344682754c46ca74172090f85bbc9378a1f.tar.gz vaadin-framework-0a0d1344682754c46ca74172090f85bbc9378a1f.zip |
Skip staging of non-deployable modules
Change-Id: I2882a5b4df627f440d17733b57fa173d85ea8c6e
Diffstat (limited to 'buildhelpers')
-rw-r--r-- | buildhelpers/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/buildhelpers/pom.xml b/buildhelpers/pom.xml index c37ab61b35..4dee81d1cb 100644 --- a/buildhelpers/pom.xml +++ b/buildhelpers/pom.xml @@ -70,6 +70,13 @@ <skipSource>true</skipSource> </configuration> </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <configuration> + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> + </configuration> + </plugin> </plugins> </pluginManagement> </build> |