You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by og...@apache.org on 2011/02/09 20:26:41 UTC

svn commit: r1069051 - /incubator/stanbol/trunk/enhancer/parent/pom.xml

Author: ogrisel
Date: Wed Feb  9 19:26:41 2011
New Revision: 1069051

URL: http://svn.apache.org/viewvc?rev=1069051&view=rev
Log:
put the build plugin configuration to the plugin section

Modified:
    incubator/stanbol/trunk/enhancer/parent/pom.xml

Modified: incubator/stanbol/trunk/enhancer/parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/enhancer/parent/pom.xml?rev=1069051&r1=1069050&r2=1069051&view=diff
==============================================================================
--- incubator/stanbol/trunk/enhancer/parent/pom.xml (original)
+++ incubator/stanbol/trunk/enhancer/parent/pom.xml Wed Feb  9 19:26:41 2011
@@ -72,19 +72,23 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<!-- Compile for Java 6, source is Java 6 -->
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
 		</plugins>
 
 		<pluginManagement>
 			<plugins>
-				<!-- Compile for Java 6, source is Java 6 -->
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-compiler-plugin</artifactId>
 					<version>2.3.1</version>
-					<configuration>
-						<source>1.6</source>
-						<target>1.6</target>
-					</configuration>
 				</plugin>
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>