Author: not Date: Mon Feb 21 13:54:39 2011 New Revision: 1072967 URL: http://svn.apache.org/viewvc?rev=1072967&view=rev Log: ARIES-581 Provide a java6-parent pom
Added: aries/trunk/parent/default-parent/java6-parent/ aries/trunk/parent/default-parent/java6-parent/pom.xml (with props) Modified: aries/trunk/parent/default-parent/pom.xml Added: aries/trunk/parent/default-parent/java6-parent/pom.xml URL: http://svn.apache.org/viewvc/aries/trunk/parent/default-parent/java6-parent/pom.xml?rev=1072967&view=auto ============================================================================== --- aries/trunk/parent/default-parent/java6-parent/pom.xml (added) +++ aries/trunk/parent/default-parent/java6-parent/pom.xml Mon Feb 21 13:54:39 2011 @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + 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"> + <!-- This file was based on the Aries Java 5 Parent Pom --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.aries</groupId> + <artifactId>default-parent</artifactId> + <version>0.4-SNAPSHOT</version> + </parent> + + <artifactId>java6-parent</artifactId> + <name>Aries :: Java 6 Parent POM</name> + <version>0.4-SNAPSHOT</version> + <packaging>pom</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <requireJavaVersion> + <version>[1.6,)</version> + </requireJavaVersion> + </rules> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <source>1.6</source> + </configuration> + </plugin> + </plugins> + </build> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <targetJdk>1.6</targetJdk> + </configuration> + </plugin> + </plugins> + </reporting> + +</project> + + Propchange: aries/trunk/parent/default-parent/java6-parent/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: aries/trunk/parent/default-parent/pom.xml URL: http://svn.apache.org/viewvc/aries/trunk/parent/default-parent/pom.xml?rev=1072967&r1=1072966&r2=1072967&view=diff ============================================================================== --- aries/trunk/parent/default-parent/pom.xml (original) +++ aries/trunk/parent/default-parent/pom.xml Mon Feb 21 13:54:39 2011 @@ -187,6 +187,79 @@ <pluginManagement> <plugins> + <!--TODO TEXT. This plugin's configuration is used in m2e only.--> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.apache.maven.plugins + </groupId> + <artifactId> + maven-antrun-plugin + </artifactId> + <versionRange> + [1.2,) + </versionRange> + <goals> + <goal>run</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.codehaus.mojo + </groupId> + <artifactId> + properties-maven-plugin + </artifactId> + <versionRange> + [1.0-alpha-2,) + </versionRange> + <goals> + <goal> + read-project-properties + </goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.ops4j.pax.exam + </groupId> + <artifactId> + maven-paxexam-plugin + </artifactId> + <versionRange> + [1.2.3,) + </versionRange> + <goals> + <goal> + generate-depends-file + </goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> @@ -597,6 +670,7 @@ <modules> <module>java5-parent</module> + <module>java6-parent</module> </modules> </project>