diff options
| author | Robert Gemmell <robbie@apache.org> | 2013-10-06 22:12:42 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2013-10-06 22:12:42 +0000 |
| commit | ac87962d0f749ad597be71af1fbd8c11509e694e (patch) | |
| tree | 71a8c99cdf7d662880fe699ef08c6ff8752e0520 /qpid/java | |
| parent | 603d080069d660701261dd10943cad4ced22a830 (diff) | |
| download | qpid-python-ac87962d0f749ad597be71af1fbd8c11509e694e.tar.gz | |
QPID-5048: add initial config for project-info report plugin, and a TODO entry for the underlying content still required
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1529707 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/pom.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/qpid/java/pom.xml b/qpid/java/pom.xml index 584d0e09b7..a3f43e6041 100644 --- a/qpid/java/pom.xml +++ b/qpid/java/pom.xml @@ -30,6 +30,7 @@ <!-- ###### TODO ###### + - Add project details such as Website, Mailing List, SCM. - Test deploying the modules to a local Nexus instance (overriding the repo properties). - Dont deploy modules we aren't already doing so. - Decide on name for this parent module. @@ -91,6 +92,7 @@ <maven-dependency-plugin-version>2.8</maven-dependency-plugin-version> <javacc-maven-plugin-version>2.6</javacc-maven-plugin-version> <maven-rar-plugin-version>2.3</maven-rar-plugin-version> + <maven-project-info-reports-plugin-version>2.7</maven-project-info-reports-plugin-version> <!-- javac source/target properties --> <java.source>1.6</java.source> @@ -357,6 +359,11 @@ <artifactId>maven-rar-plugin</artifactId> <version>${maven-rar-plugin-version}</version> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>${maven-project-info-reports-plugin-version}</version> + </plugin> </plugins> </pluginManagement> @@ -480,6 +487,22 @@ </plugins> </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <!--While the version is specified in pluginManagement, it has to be set here otherwise the + version specified within the build.plugins section of the parent pom takes precendece --> + <version>${maven-project-info-reports-plugin-version}</version> + <configuration> + <dependencyDetailsEnabled>false</dependencyDetailsEnabled> + <dependencyLocationsEnabled>false</dependencyLocationsEnabled> + </configuration> + </plugin> + </plugins> + </reporting> + <profiles> <profile> <!-- Everything in this profile should already be set above by default in case someone sets an explicit non-test |
