Rev 209 | Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 207 | espaco | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
||
| 4 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||
| 5 | <modelVersion>4.0.0</modelVersion> |
||
| 6 | <groupId>br.com.ec</groupId> |
||
| 7 | <artifactId>espacocase</artifactId> |
||
| 8 | <version>1.0.0-SNAPSHOT</version> |
||
| 9 | <packaging>war</packaging> |
||
| 10 | |||
| 11 | <properties> |
||
| 12 | <maven.compiler.target>1.8</maven.compiler.target> |
||
| 13 | <maven.compiler.source>1.8</maven.compiler.source> |
||
| 14 | |||
| 15 | <spring.version>5.0.0.RELEASE</spring.version> |
||
| 16 | <espacocase-framework.version>2.1.0-SNAPSHOT</espacocase-framework.version> |
||
| 17 | |||
| 18 | <tomcat-maven-plugin.version>2.2</tomcat-maven-plugin.version> |
||
| 19 | <tomcat.version>7.0.28</tomcat.version> |
||
| 20 | <tomcat.contextFile>${project.build.directory}/${project.build.finalName}/WEB-INF/tomcat-env.xml</tomcat.contextFile> |
||
| 21 | |||
| 22 | <!-- FUTURO FRAMEWORK --> |
||
| 23 | <primefaces.version>10.0.0</primefaces.version> |
||
| 24 | <jsf.version>2.2.20</jsf.version> |
||
| 25 | </properties> |
||
| 26 | |||
| 27 | <dependencies> |
||
| 28 | <!-- FRAMEWORK |
||
| 29 | <dependency> |
||
| 30 | <groupId>br.com.ec</groupId> |
||
| 31 | <artifactId>espacocase-framework-core</artifactId> |
||
| 32 | <version>${espacocase-framework.version}</version> |
||
| 33 | </dependency> |
||
| 34 | <dependency> |
||
| 35 | <groupId>br.com.ec</groupId> |
||
| 36 | <artifactId>espacocase-framework-relatorio</artifactId> |
||
| 37 | <version>${espacocase-framework.version}</version> |
||
| 38 | </dependency> |
||
| 39 | <dependency> |
||
| 40 | <groupId>br.com.ec</groupId> |
||
| 41 | <artifactId>espacocase-framework-web</artifactId> |
||
| 42 | <version>${espacocase-framework.version}</version> |
||
| 43 | </dependency> |
||
| 44 | --> |
||
| 45 | <dependency> |
||
| 46 | <groupId>org.springframework</groupId> |
||
| 47 | <artifactId>spring-webmvc</artifactId> |
||
| 48 | <version>${spring.version}</version> |
||
| 49 | </dependency> |
||
| 50 | <dependency> |
||
| 51 | <groupId>org.springframework</groupId> |
||
| 52 | <artifactId>spring-aspects</artifactId> |
||
| 53 | <version>${spring.version}</version> |
||
| 54 | </dependency> |
||
| 55 | |||
| 56 | <!-- SPRING SECURITY --> |
||
| 57 | <dependency> |
||
| 58 | <groupId>org.springframework.security</groupId> |
||
| 59 | <artifactId>spring-security-web</artifactId> |
||
| 60 | <version>${spring.version}</version> |
||
| 61 | </dependency> |
||
| 62 | <dependency> |
||
| 63 | <groupId>org.springframework.security</groupId> |
||
| 64 | <artifactId>spring-security-core</artifactId> |
||
| 65 | <version>${spring.version}</version> |
||
| 66 | </dependency> |
||
| 67 | <dependency> |
||
| 68 | <groupId>org.springframework.security</groupId> |
||
| 69 | <artifactId>spring-security-config</artifactId> |
||
| 70 | <version>${spring.version}</version> |
||
| 71 | </dependency> |
||
| 72 | |||
| 73 | <!-- MSSQL Server Java Connector dependency --> |
||
| 74 | <dependency> |
||
| 75 | <groupId>postgresql</groupId> |
||
| 76 | <artifactId>postgresql</artifactId> |
||
| 77 | <version>8.4-702.jdbc4</version> |
||
| 78 | <scope>runtime</scope> |
||
| 79 | </dependency> |
||
| 80 | <dependency> |
||
| 81 | <groupId>javax.servlet</groupId> |
||
| 82 | <artifactId>javax.servlet-api</artifactId> |
||
| 83 | <version>3.1.0</version> |
||
| 84 | <scope>provided</scope> |
||
| 85 | </dependency> |
||
| 86 | |||
| 87 | <!-- FUTURO FRAMEWORK --> |
||
| 88 | <dependency> |
||
| 89 | <groupId>org.glassfish</groupId> |
||
| 90 | <artifactId>javax.faces</artifactId> |
||
| 91 | <version>2.3.0-m02</version> |
||
| 92 | </dependency> |
||
| 93 | |||
| 94 | <dependency> |
||
| 95 | <groupId>com.sun.faces</groupId> |
||
| 96 | <artifactId>jsf-api</artifactId> |
||
| 97 | <version>${jsf.version}</version> |
||
| 98 | <scope>provided</scope> |
||
| 99 | </dependency> |
||
| 100 | |||
| 101 | <dependency> |
||
| 102 | <groupId>com.sun.faces</groupId> |
||
| 103 | <artifactId>jsf-impl</artifactId> |
||
| 104 | <version>${jsf.version}</version> |
||
| 105 | <scope>provided</scope> |
||
| 106 | </dependency> |
||
| 107 | |||
| 108 | <!-- https://mvnrepository.com/artifact/javax.inject/javax.inject --> |
||
| 109 | <dependency> |
||
| 110 | <groupId>javax.inject</groupId> |
||
| 111 | <artifactId>javax.inject</artifactId> |
||
| 112 | <version>1</version> |
||
| 113 | </dependency> |
||
| 114 | |||
| 115 | <!-- Primefaces dependency --> |
||
| 116 | <dependency> |
||
| 117 | <groupId>org.primefaces</groupId> |
||
| 118 | <artifactId>primefaces</artifactId> |
||
| 119 | <version>${primefaces.version}</version> |
||
| 120 | </dependency> |
||
| 121 | |||
| 122 | <dependency> |
||
| 123 | <groupId>org.primefaces.poseidon</groupId> |
||
| 124 | <artifactId>poseidon</artifactId> |
||
| 125 | <version>3.0.0</version> |
||
| 126 | </dependency> |
||
| 127 | |||
| 128 | </dependencies> |
||
| 129 | |||
| 130 | <repositories> |
||
| 131 | <!-- |
||
| 132 | <repository> |
||
| 133 | <id>prime-repo</id> |
||
| 134 | <name>PrimeFaces Maven Repository</name> |
||
| 135 | <url>http://repository.primefaces.org</url> |
||
| 136 | <layout>default</layout> |
||
| 137 | </repository> |
||
| 138 | --> |
||
| 139 | </repositories> |
||
| 140 | |||
| 141 | <build> |
||
| 142 | <plugins> |
||
| 143 | <plugin> |
||
| 144 | <groupId>org.apache.maven.plugins</groupId> |
||
| 145 | <artifactId>maven-war-plugin</artifactId> |
||
| 146 | <version>2.6</version> |
||
| 147 | <configuration> |
||
| 148 | <failOnMissingWebXml>false</failOnMissingWebXml> |
||
| 149 | </configuration> |
||
| 150 | </plugin> |
||
| 151 | |||
| 152 | <plugin> |
||
| 153 | <groupId>org.apache.tomcat.maven</groupId> |
||
| 154 | <artifactId>tomcat7-maven-plugin</artifactId> |
||
| 155 | <version>${tomcat-maven-plugin.version}</version> |
||
| 156 | <configuration> |
||
| 157 | <contextFile>${tomcat.contextFile}</contextFile> |
||
| 158 | <port>8083</port> |
||
| 159 | </configuration> |
||
| 160 | </plugin> |
||
| 161 | </plugins> |
||
| 162 | </build> |
||
| 163 | |||
| 164 | </project> |