Author: olamy
Date: Mon Dec 3 09:50:22 2012
New Revision: 1416402
URL: http://svn.apache.org/viewvc?rev=1416402&view=rev
Log:
fix pom formatting and use dynamic versions
Modified:
maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-190/pom.xml
Modified: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-190/pom.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-190/pom.xml?rev=1416402&r1=1416401&r2=1416402&view=diff
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-190/pom.xml
(original)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-190/pom.xml Mon
Dec 3 09:50:22 2012
@@ -1,31 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.example.pce</groupId>
- <artifactId>sample</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <properties>
-
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1-SNAPSHOT</version>
- <configuration>
- <compilerId>eclipse</compilerId>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- <dependencies>
- <dependency>
-
<groupId>org.codehaus.plexus</groupId>
-
<artifactId>plexus-compiler-eclipse</artifactId>
- <version>2.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.example.pce</groupId>
+ <artifactId>sample</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <properties>
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>@pom.version@</version>
+ <configuration>
+ <compilerId>eclipse</compilerId>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-compiler-eclipse</artifactId>
+ <version>@plexusCompilerVersion@</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
</project>