Skip to content

Instantly share code, notes, and snippets.

@rangalo
Created March 12, 2015 05:14
Show Gist options
  • Save rangalo/40ea1eade3a703519a6e to your computer and use it in GitHub Desktop.
Save rangalo/40ea1eade3a703519a6e to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<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.firstscope</groupId>
<artifactId>scopeone</artifactId>
<version>0.0.1-SNAPSHOT</version>
<description>First scopeapplication</description>
<packaging>war</packaging>
<properties>
<javaee.version>7.0</javaee.version>
<primefaces.version>4.0</primefaces.version>
<!-- maven-compiler-plugin -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>${javaee.version}</version>
<scope>provided</scope>
</dependency>
<!-- primefaces -->
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>${primefaces.version}</version>
</dependency>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment