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
<?xml version='1.0' encoding='UTF-8'?> | |
<!-- =========== FULL CONFIGURATION FILE ================================== --> | |
<faces-config version="2.0" | |
xmlns="http://java.sun.com/xml/ns/javaee" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"> | |
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
# database properties | |
jdbc.driverClassName=com.mysql.jdbc.Driver | |
jdbc.url=jdbc:mysql://localhost/sistemalivros | |
jdbc.username=root | |
jdbc.password= | |
jdbc.driver=com.mysql.jdbc.Driver | |
jdbc.dialect=org.hibernate.dialect.MySQL5Dialect | |
jdbc.validationQuery=select 1 |
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
<!-- Repositories --> | |
<repositories> | |
<!-- EBR Spring Release Repository --> | |
<repository> | |
<id>com.springsource.repository.bundles.release</id> | |
<name>EBR Spring Release Repository</name> | |
<url>http://repository.springsource.com/maven/bundles/release</url> | |
</repository> | |
<!-- EBR Spring External Repository --> | |
<repository> |
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
<!-- Primefaces --> | |
<dependency> | |
<groupId>org.primefaces</groupId> | |
<artifactId>primefaces</artifactId> | |
<version>3.4.2</version> | |
</dependency> | |
<!-- Theme Engine --> | |
<dependency> | |
<groupId>org.primefaces.themes</groupId> |
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
<!-- JSR-330 --> | |
<dependency> | |
<groupId>javax.inject</groupId> | |
<artifactId>javax.inject</artifactId> | |
<version>1</version> | |
</dependency> |
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
<!-- Tomcat 6 need this --> | |
<dependency> | |
<groupId>com.sun.el</groupId> | |
<artifactId>el-ri</artifactId> | |
<version>1.0</version> | |
</dependency> |
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
<!-- EL --> | |
<dependency> | |
<groupId>org.glassfish.web</groupId> | |
<artifactId>el-impl</artifactId> | |
<version>2.2</version> | |
</dependency> |
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
<properties> | |
<log4j.version>1.2.14</log4j.version> | |
<slf4j.version>1.6.1</slf4j.version> | |
</properties> | |
<!-- Log --> | |
<dependency> | |
<groupId>commons-logging</groupId> | |
<artifactId>commons-logging</artifactId> | |
<version>1.1.1</version> |
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
<properties> | |
<hibernate.entitymanager.version>3.6.3.Final</hibernate.entitymanager.version> | |
<hibernate.jpa-api.version>2.0-cr-1</hibernate.jpa-api.version> | |
</properties> | |
<!-- Hibernate and JPA --> | |
<dependency> | |
<groupId>org.hibernate.java-persistence</groupId> | |
<artifactId>jpa-api</artifactId> |
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
<!-- Processador de Criteria builder in Generic DAO --> | |
<dependency> | |
<groupId>org.eclipse.persistence</groupId> | |
<artifactId>eclipselink</artifactId> | |
<version>2.3.2</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.persistence</groupId> | |
<artifactId>javax.persistence</artifactId> |