diff options
author | Brett Porter <brett@apache.org> | 2007-09-12 09:33:41 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2007-09-12 09:33:41 +0000 |
commit | 17f229020f24ab34c553ef619f11834ae6882b21 (patch) | |
tree | 1867c4e8f537fe2f7cb05c129aa75b728ae035e5 /pom.xml | |
parent | b8cca284caff8744badd9db482f6db163b6e0a18 (diff) | |
download | archiva-17f229020f24ab34c553ef619f11834ae6882b21.tar.gz archiva-17f229020f24ab34c553ef619f11834ae6882b21.zip |
[MRM-462] separate configuration of managed and remote repositories
Merged from branches/MRM-462
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@574859 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 59 |
1 files changed, 34 insertions, 25 deletions
@@ -19,7 +19,8 @@ ~ under the License. --> -<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"> +<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven</groupId> @@ -33,10 +34,10 @@ <name>Archiva</name> <version>1.0-beta-2-SNAPSHOT</version> <description> - Archiva is an application for managing one or more remote - repositories, including administration, artifact handling, - browsing and searching. - </description> + Archiva is an application for managing one or more remote + repositories, including administration, artifact handling, + browsing and searching. + </description> <url>http://maven.apache.org/archiva</url> <issueManagement> <system>jira</system> @@ -95,26 +96,26 @@ </execution> </executions> </plugin> -<!-- Doesn't work on Mac with Java 6 yet - <plugin> - <artifactId>maven-enforcer-plugin</artifactId> - <executions> - <execution> - <id>enforce-java</id> - <goals> - <goal>enforce-once</goal> - </goals> - <configuration> - <rules> - <requireJavaVersion> - <version>1.5.0</version> - </requireJavaVersion> - </rules> - </configuration> - </execution> - </executions> - </plugin> ---> + <!-- Doesn't work on Mac with Java 6 yet + <plugin> + <artifactId>maven-enforcer-plugin</artifactId> + <executions> + <execution> + <id>enforce-java</id> + <goals> + <goal>enforce-once</goal> + </goals> + <configuration> + <rules> + <requireJavaVersion> + <version>1.5.0</version> + </requireJavaVersion> + </rules> + </configuration> + </execution> + </executions> + </plugin> + --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> @@ -123,6 +124,12 @@ </configuration> </plugin> <plugin> + <artifactId>maven-idea-plugin</artifactId> + <configuration> + <jdkLevel>1.5</jdkLevel> + </configuration> + </plugin> + <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.2</version> </plugin> @@ -670,6 +677,7 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> + <version>2.0</version> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> @@ -750,6 +758,7 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> + <version>2.0</version> <configuration> <check> <!-- TODO! raise to 85/100 --> |