Skip to content

Commit

Permalink
Added maven conf for example3 for usage with sonar (usage: mvn sonar:…
Browse files Browse the repository at this point in the history
…sonar)
  • Loading branch information
Leonard Axelsson committed Feb 3, 2011
1 parent 8f9d70e commit 1a61911
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions example3/pom.xml
@@ -0,0 +1,22 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>agical</groupId>
<artifactId>mikadomethod</artifactId>
<name>example3</name>
<version>0.1</version>
<build>
<sourceDirectory>java/space/src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 1a61911

Please sign in to comment.