Repository: wicket Updated Branches: refs/heads/master 9cf438514 -> de606911f
Disable all Maven plugins which produce artefacts for wicket-user-guide I can't find a way to disable m-jar-p/m-bundle-p ... Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/de606911 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/de606911 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/de606911 Branch: refs/heads/master Commit: de606911f305981ca1eaaa6feac073fcd84e2714 Parents: 9cf4385 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Thu Apr 23 14:18:42 2015 +0300 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Thu Apr 23 14:18:42 2015 +0300 ---------------------------------------------------------------------- wicket-user-guide/pom.xml | 63 ++++++++++++++++++++++++++++++------------ 1 file changed, 46 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/de606911/wicket-user-guide/pom.xml ---------------------------------------------------------------------- diff --git a/wicket-user-guide/pom.xml b/wicket-user-guide/pom.xml index e3b4975..5829954 100644 --- a/wicket-user-guide/pom.xml +++ b/wicket-user-guide/pom.xml @@ -76,6 +76,51 @@ </repository> </repositories> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-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> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <configuration> + <!-- Just documentation, no sources --> + <skipSource>true</skipSource> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <!-- Just documentation, no sources --> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + <profiles> <profile> <id>guide</id> @@ -132,23 +177,7 @@ </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> + </plugins> </build> </profile> </profiles>
