Skip to content

Commit

Permalink
Alteração POM.xml (#41)
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.
  • Loading branch information
viniciussoaresti authored May 9, 2018
1 parent c0f03ae commit 178d166
Showing 1 changed file with 37 additions and 4 deletions.
41 changes: 37 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<description>Sistema de gerenciamento de vendas, funcionários e do financeiro da empresa SB Gráfica</description>
<url>http://maven.apache.org</url>
<dependencies>

<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
Expand All @@ -32,16 +31,51 @@
<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>
<artifactId>org.eclipse.persistence.jpa.jpql</artifactId>
<version>2.7.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.eclipse.persistence/eclipselink -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
<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>
<artifactId>javax.persistence</artifactId>
<version>2.2.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.hibernate.javax.persistence/hibernate-jpa-2.1-api -->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.2.Final</version>
</dependency>


</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -54,5 +88,4 @@
</plugin>
</plugins>
</build>

</project>

0 comments on commit 178d166

Please sign in to comment.