diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-02-06 09:19:10 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-02-06 09:19:10 +0000 |
commit | c99d4755650a32a9ebece84db7beb63bc867b5c6 (patch) | |
tree | 943f65ae209eb492547de29bb4ff8e714668c5bb | |
parent | 0c00d07fd7c3d3fd50b21fd53d18de45a7109af9 (diff) |
Add compiler-plugin to contribution-jar archetype as its required when using older maven versions
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1067620 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml b/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml index 28a846797c..96b687fa79 100644 --- a/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml +++ b/sca-java-2.x/trunk/maven/archetypes/contribution-jar/src/main/resources/archetype-resources/pom.xml @@ -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> |