Skip to content

Instantly share code, notes, and snippets.

@cwc
Created March 21, 2013 17:27
Show Gist options
  • Save cwc/5214884 to your computer and use it in GitHub Desktop.
Save cwc/5214884 to your computer and use it in GitHub Desktop.
POM skeleton for new Maven projects
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId></groupId>
<artifactId></artifactId>
<version>1.0-SNAPSHOT</version>
<!-- Dependencies
<dependencies>
<dependency>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
</dependency>
</dependencies>
-->
<!-- Build section (Java version specified in configuration of compiler plugin)
<build>
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment