commit | 13cbfe5fb5e9370c81d4f7422677ce2e8bf0532c | [log] [tgz] |
---|---|---|
author | Brian O'Connor <bocon@onlab.us> | Thu Dec 11 14:40:31 2014 -0800 |
committer | Gerrit Code Review <gerrit@onlab.us> | Wed Dec 24 06:42:01 2014 +0000 |
tree | 1236643df314819ce01d8a33e191dc3d2a549ddd | |
parent | df2e65297cd43bebbd938e37583f3109e616455d [diff] |
adding compile to archetype poms Change-Id: I3d8a81894f38b240e2bf1536c1ec8a64583abede
diff --git a/tools/package/archetypes/api/src/main/resources/archetype-resources/pom.xml b/tools/package/archetypes/api/src/main/resources/archetype-resources/pom.xml index cdbe8a8..f7c7333 100644 --- a/tools/package/archetypes/api/src/main/resources/archetype-resources/pom.xml +++ b/tools/package/archetypes/api/src/main/resources/archetype-resources/pom.xml
@@ -45,6 +45,15 @@ <version>2.5.3</version> <extensions>true</extensions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.5.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> </plugins> </build>
diff --git a/tools/package/archetypes/bundle/src/main/resources/archetype-resources/pom.xml b/tools/package/archetypes/bundle/src/main/resources/archetype-resources/pom.xml index 7b6cb8c..19df5f4 100644 --- a/tools/package/archetypes/bundle/src/main/resources/archetype-resources/pom.xml +++ b/tools/package/archetypes/bundle/src/main/resources/archetype-resources/pom.xml
@@ -73,7 +73,15 @@ <version>2.5.3</version> <extensions>true</extensions> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.5.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId>
diff --git a/tools/package/archetypes/cli/src/main/resources/archetype-resources/pom.xml b/tools/package/archetypes/cli/src/main/resources/archetype-resources/pom.xml index 495cabd..8fbe0f6 100644 --- a/tools/package/archetypes/cli/src/main/resources/archetype-resources/pom.xml +++ b/tools/package/archetypes/cli/src/main/resources/archetype-resources/pom.xml
@@ -92,7 +92,15 @@ <version>2.5.3</version> <extensions>true</extensions> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.5.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId>