Author: mes
Date: 2010-11-15 15:17:11 -0800 (Mon, 15 Nov 2010)
New Revision: 22860

Modified:
   
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
Log:
added compiler settings to ensure java 1.6 is used

Modified: 
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- 
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
     2010-11-15 22:38:56 UTC (rev 22859)
+++ 
cytoscape/trunk/archetypes/sample-plugin/src/main/resources/archetype-resources/pom.xml
     2010-11-15 23:17:11 UTC (rev 22860)
@@ -12,6 +12,17 @@
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+          <optimize>true</optimize>
+          <showWarnings>true</showWarnings>
+          <showDeprecation>true</showDeprecation>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
         <configuration>
           <archive>

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to