Author: olamy
Date: Thu Jul 12 16:31:07 2012
New Revision: 1360772
URL: http://svn.apache.org/viewvc?rev=1360772&view=rev
Log:
pom formatting
Modified:
maven/plugins/trunk/maven-eclipse-plugin/pom.xml
Modified: maven/plugins/trunk/maven-eclipse-plugin/pom.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/pom.xml?rev=1360772&r1=1360771&r2=1360772&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/pom.xml Thu Jul 12 16:31:07 2012
@@ -1,7 +1,25 @@
<?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/xsd/maven-4.0.0.xsd">
+
+<!--
+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:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:schemaLocation='http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd'
xmlns='http://maven.apache.org/POM/4.0.0'>
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>maven-plugins</artifactId>
@@ -13,13 +31,16 @@
<version>2.10-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven Eclipse Plugin</name>
- <description>The Eclipse Plugin is used to generate Eclipse IDE files
(.project, .classpath and the .settings folder) from a POM.</description>
+ <description>The Eclipse Plugin is used to generate Eclipse IDE files
(.project, .classpath and the .settings folder)
+ from a POM.
+ </description>
<prerequisites>
<maven>${mavenVersion}</maven>
</prerequisites>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-eclipse-plugin/</connection>
-
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-eclipse-plugin/</developerConnection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-eclipse-plugin/
+ </developerConnection>
<url>http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/</url>
</scm>
<issueManagement>
@@ -71,7 +92,7 @@
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-provider-api</artifactId>
<version>2.1</version>
- </dependency>
+ </dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
@@ -231,7 +252,8 @@
<rules>
<requireMavenVersion>
<!-- The tests check file encoding and class path ordering
which depends on fixes in latest Maven -->
- <version>[2.0.9,3.0-SNAPSHOT],[3.0,)</version><!--
workaround for MENFORCER-94 -->
+ <version>[2.0.9,3.0-SNAPSHOT],[3.0,)</version>
+ <!-- workaround for MENFORCER-94 -->
</requireMavenVersion>
</rules>
</configuration>
@@ -283,6 +305,29 @@
<profile>
<id>run-its</id>
<build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-invoker-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>integration-test</id>
+ <goals>
+ <goal>install</goal>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
+ <postBuildHookScript>verify</postBuildHookScript>
+
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
+ <settingsFile>src/it/settings.xml</settingsFile>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -294,9 +339,10 @@
<phase>process-resources</phase>
<configuration>
<target>
- <available property="it_settings_file"
file="src/it/settings-${user.name}.xml"
value="src/it/settings-${user.name}.xml" />
- <property name="it_settings_file"
location="src/it/settings-default.xml" />
- <copy file="${it_settings_file}"
tofile="src/it/settings.xml" />
+ <available property="it_settings_file"
file="src/it/settings-${user.name}.xml"
+ value="src/it/settings-${user.name}.xml"/>
+ <property name="it_settings_file"
location="src/it/settings-default.xml"/>
+ <copy file="${it_settings_file}"
tofile="src/it/settings.xml"/>
</target>
</configuration>
<goals>
@@ -308,8 +354,8 @@
<phase>post-integration-test</phase>
<configuration>
<target>
- <property name="script"
location="verify-integration-tests-checks.bsh" />
- <script language="beanshell" src="${script}" />
+ <property name="script"
location="verify-integration-tests-checks.bsh"/>
+ <script language="beanshell" src="${script}"/>
</target>
</configuration>
<goals>
@@ -337,26 +383,6 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-invoker-plugin</artifactId>
- <version>1.5</version>
- <executions>
- <execution>
- <id>integration-test</id>
- <goals>
- <goal>install</goal>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
- <postBuildHookScript>verify</postBuildHookScript>
-
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
- <settingsFile>src/it/settings.xml</settingsFile>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.9</version>
<executions>
@@ -379,7 +405,7 @@
<id>generated-helpmojo</id>
<configuration>
<extractors>
- <extractor />
+ <extractor/>
</extractors>
</configuration>
</execution>