Skip to content

Commit

Permalink
Correção JSF POM (#42)
Browse files Browse the repository at this point in the history
* Adicionados pacotes e arquivos base do projeto. Conforme issue #31

* Adicionadas dependências base: jsf, junit, etc.

* Adicionado META-INF e WEB-INF

* Consertado pom (retirada tag plugins)

* Alterado POM com plugin corrigindo erro war

* Alterado caminho web-inf

* Adicionadas dependências restantes.

* Alterado jsf pro de verdade

* Update pom.xml
  • Loading branch information
viniciussoaresti authored May 9, 2018
1 parent 178d166 commit a496f4a
Showing 1 changed file with 10 additions and 19 deletions.
29 changes: 10 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<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>com.github.viniciussoaresti</groupId>
Expand Down Expand Up @@ -30,15 +30,7 @@
<artifactId>mysql-connector-java</artifactId>
<version>8.0.11</version>
</dependency>

<!-- https://mvnrepository.com/artifact/javax.faces/jsf-api -->
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>


<!-- https://mvnrepository.com/artifact/org.eclipse.persistence/org.eclipse.persistence.jpa.jpql -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
Expand All @@ -52,15 +44,7 @@
<artifactId>eclipselink</artifactId>
<version>2.7.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/javax.faces/jsf-api -->
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>


<!-- https://mvnrepository.com/artifact/org.eclipse.persistence/javax.persistence -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
Expand All @@ -75,6 +59,13 @@
<version>1.0.2.Final</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.glassfish/javax.faces -->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.faces</artifactId>
<version>2.4.0</version>
</dependency>

</dependencies>
<build>
<plugins>
Expand Down

0 comments on commit a496f4a

Please sign in to comment.