Repository: wicket Updated Branches: refs/heads/wicket-6.x 489ae1f54 -> 13b2940bd
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 ... (cherry picked from commit de606911f305981ca1eaaa6feac073fcd84e2714) Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/13b2940b Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/13b2940b Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/13b2940b Branch: refs/heads/wicket-6.x Commit: 13b2940bdc61f12f8117c563eac889bcb076f28a Parents: 489ae1f 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:20:02 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/13b2940b/wicket-user-guide/pom.xml ---------------------------------------------------------------------- diff --git a/wicket-user-guide/pom.xml b/wicket-user-guide/pom.xml index 2179f75..0ca4450 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>
