Skip to content

Instantly share code, notes, and snippets.

@jokerr
Created September 24, 2016 12:41
Show Gist options
  • Save jokerr/7c4025dc537279b98cafb377ce25d2f2 to your computer and use it in GitHub Desktop.
Save jokerr/7c4025dc537279b98cafb377ce25d2f2 to your computer and use it in GitHub Desktop.
AdamBien - javaee-essentials-pom (https://github.com/AdamBien/javaee-essentials-pom)
<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>com.airhacks</groupId>
<artifactId>javaee7-essentials-pom</artifactId>
<version>7.0</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>${artifactId}</finalName>
</build>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment