diff options
author | Francis Gagné <fragag1@gmail.com> | 2014-09-07 23:44:43 -0400 |
---|---|---|
committer | Francis Gagné <fragag1@gmail.com> | 2014-09-08 00:13:33 -0400 |
commit | 25cb62d5987fdb4e76484856d85c4f9291d5d646 (patch) | |
tree | 516ee0b46a66e0f5f88af6b83db459566318d1fd /pom.xml |
Initial version
This is a Java project template for the Luna version of Eclipse JDT and
Eclipse m2e. It also enables the FindBugs builder.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -0,0 +1,29 @@ +<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>ca.fragag</groupId> + <artifactId>java-template</artifactId> + <version>0.0.1-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>java-template</name> + <url>https://github.com/FraGag/java-template</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <source>1.7</source> + <target>1.7</target> + </configuration> + </plugin> + </plugins> + </build> +</project> |