You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2011/02/06 10:19:12 UTC

svn commit: r1067620 - /tuscany/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml

Author: antelder
Date: Sun Feb  6 09:19:10 2011
New Revision: 1067620

URL: http://svn.apache.org/viewvc?rev=1067620&view=rev
Log:
Add compiler-plugin to contribution-jar archetype as its required when using older maven versions

Modified:
    tuscany/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml

Modified: tuscany/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml?rev=1067620&r1=1067619&r2=1067620&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml Sun Feb  6 09:19:10 2011
@@ -68,6 +68,17 @@
             <artifactId>maven-tuscany-plugin</artifactId>
             <version>${tuscany.version}</version>
          </plugin>
+
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <configuration>
+               <source>1.6</source>
+               <target>1.6</target>
+               <optimise>true</optimise>
+               <debug>true</debug>
+            </configuration>
+         </plugin>
       </plugins>
 
    </build>