diff options
author | nirmal070125 <nirmal070125@13f79535-47bb-0310-9956-ffa450edef68> | 2011-06-13 11:43:03 +0000 |
---|---|---|
committer | nirmal070125 <nirmal070125@13f79535-47bb-0310-9956-ffa450edef68> | 2011-06-13 11:43:03 +0000 |
commit | 153382cf88bcdde1d313cd16a276b7931edbcb53 (patch) | |
tree | 2aeaf880d67b873ae7bf53ba7debcb9b1aa70349 /collaboration | |
parent | a88c0c1cebbc37af0b2e0da18cef5338f4d2269b (diff) |
Changed POM, as it uses Java5
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1135097 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'collaboration')
-rw-r--r-- | collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml b/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml index f28981c4bb..46489481ff 100644 --- a/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml +++ b/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/pom.xml @@ -105,6 +105,17 @@ <defaultGoal>install</defaultGoal> <directory>${basedir}/target</directory> <finalName>${artifactId}-${version}</finalName> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + </plugins> + </build> </project> |