You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/04/23 10:37:35 UTC

[2/2] wicket git commit: Do not deploy the artefacts of wicket-user-guide module

Do not deploy the artefacts of wicket-user-guide module

(cherry picked from commit 9cf4385140da9ec4fa523670b0d8e8e3a80d48a2)


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/489ae1f5
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/489ae1f5
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/489ae1f5

Branch: refs/heads/wicket-6.x
Commit: 489ae1f54f025e7cd0a318faf94770b6b2057975
Parents: 1dd2139
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Apr 23 11:23:01 2015 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu Apr 23 11:23:40 2015 +0300

----------------------------------------------------------------------
 wicket-user-guide/pom.xml | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/489ae1f5/wicket-user-guide/pom.xml
----------------------------------------------------------------------
diff --git a/wicket-user-guide/pom.xml b/wicket-user-guide/pom.xml
index 4030535..2179f75 100644
--- a/wicket-user-guide/pom.xml
+++ b/wicket-user-guide/pom.xml
@@ -132,8 +132,24 @@
 							</execution>
 						</executions>
 					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-deploy-plugin</artifactId>
+					</plugin>
 				</plugins>
+				<pluginManagement>
+					<plugins>
+						<plugin>
+							<groupId>org.apache.maven.plugins</groupId>
+							<artifactId>maven-deploy-plugin</artifactId>
+							<configuration>
+								<!-- Just documentation. No need to deploy -->
+								<skip>true</skip>
+							</configuration>
+						</plugin>
+					</plugins>
+				</pluginManagement>
 			</build>
 		</profile>
 	</profiles>
-</project>
\ No newline at end of file
+</project>