diff options
-rw-r--r-- | all/pom.xml | 7 | ||||
-rw-r--r-- | buildhelpers/pom.xml | 7 | ||||
-rw-r--r-- | liferay/pom.xml | 11 | ||||
-rw-r--r-- | uitest/pom.xml | 11 |
4 files changed, 36 insertions, 0 deletions
diff --git a/all/pom.xml b/all/pom.xml index c65c5df7e2..fce46efd1f 100644 --- a/all/pom.xml +++ b/all/pom.xml @@ -168,6 +168,13 @@ <skip>true</skip> </configuration> </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <configuration> + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> + </configuration> + </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> 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> diff --git a/liferay/pom.xml b/liferay/pom.xml index 02ec48d857..9e3d9f13e9 100644 --- a/liferay/pom.xml +++ b/liferay/pom.xml @@ -124,6 +124,17 @@ </configuration> </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <configuration> + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project> diff --git a/uitest/pom.xml b/uitest/pom.xml index b75e33fafd..f6f454058e 100644 --- a/uitest/pom.xml +++ b/uitest/pom.xml @@ -327,6 +327,17 @@ </configuration> </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <configuration> + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </project> |