Last active
December 1, 2016 23:47
-
-
Save Miltex/03353f2e52e27642d5f14b5ba2acd63f to your computer and use it in GitHub Desktop.
POM basico jsf primefaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>br.miltex</groupId> | |
<artifactId>AlgaworksJEECDIPrimefacesJPA</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>war</packaging> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.primefaces</groupId> | |
<artifactId>primefaces</artifactId> | |
<version>6.0</version> | |
<scope>compile</scope> | |
</dependency> | |
<!--Implementação JSF Mojarra --> | |
<dependency> | |
<groupId>org.glassfish</groupId> | |
<artifactId>javax.faces</artifactId> | |
<version>2.2.8</version> | |
<scope>compile</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<finalName>CursoAlgaworks</finalName> | |
</build> | |
<repositories> | |
<!-- For 3.5 and older --> | |
<repository> | |
<id>prime-repo</id> | |
<name>PrimeFaces Maven Repository</name> | |
<url>http://repository.primefaces.org</url> | |
<layout>default</layout> | |
</repository> | |
</repositories> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment