diff options
author | Brett Porter <brett@apache.org> | 2005-11-29 07:46:08 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2005-11-29 07:46:08 +0000 |
commit | 76cee0be7a4a8a7c0d4ed0cc01ba3128c46f834d (patch) | |
tree | 841238b7df15c83b87529c4332cd20c9543834be | |
parent | 31af359ff4ae3e22d1f4164f90330653aea6e98b (diff) | |
download | archiva-76cee0be7a4a8a7c0d4ed0cc01ba3128c46f834d.tar.gz archiva-76cee0be7a4a8a7c0d4ed0cc01ba3128c46f834d.zip |
add reports module
git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@349660 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | maven-repository-reports-standard/pom.xml | 33 | ||||
-rw-r--r-- | pom.xml | 27 |
2 files changed, 55 insertions, 5 deletions
diff --git a/maven-repository-reports-standard/pom.xml b/maven-repository-reports-standard/pom.xml new file mode 100755 index 000000000..cab1772aa --- /dev/null +++ b/maven-repository-reports-standard/pom.xml @@ -0,0 +1,33 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <parent> + <groupId>org.apache.maven.repository</groupId> + <artifactId>maven-repository-manager</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>maven-repository-reports-standard</artifactId> + <name>Maven Repository Standard Reports</name> + <dependencies> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-container-default</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-artifact</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-model</artifactId> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-repository-metadata</artifactId> + </dependency> + </dependencies> +</project> @@ -100,6 +100,7 @@ </build> <modules> <module>maven-repository-discovery</module> + <module>maven-repository-reports-standard</module> </modules> <repositories> <repository> @@ -143,10 +144,20 @@ </dependency> <dependency> <groupId>org.apache.maven</groupId> - <artifactId>maven-artifact</artifactId> + <artifactId>maven-repository-metadata</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-model</artifactId> <version>2.0</version> </dependency> <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-artifact</artifactId> + <version>2.0.1-SNAPSHOT</version> + </dependency> + <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-api</artifactId> <version>1.0-alpha-5</version> @@ -188,6 +199,16 @@ </distributionManagement> <reporting> <plugins> + <!-- TODO: should be omitted when there are no tests to run --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-clover-plugin</artifactId> + <!-- TODO: why are these needed? --> + <configuration> + <flushPolicy>threaded</flushPolicy> + <flushInterval>100</flushInterval> + </configuration> + </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> @@ -214,10 +235,6 @@ <groupId>org.codehaus.mojo</groupId> <artifactId>surefire-report-maven-plugin</artifactId> </plugin> - <!-- TODO: should be omitted when there are no tests to run --> - <plugin> - <artifactId>maven-clover-plugin</artifactId> - </plugin> <!-- TODO: should be omitted when there are no sources/not java --> <plugin> <artifactId>maven-javadoc-plugin</artifactId> |