Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 695 | blopes | 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>labsantaesmeralda</artifactId> |
||
| 8 | <version>1.0.0-SNAPSHOT</version> |
||
| 9 | <packaging>war</packaging> |
||
| 10 | |||
| 11 | <properties> |
||
| 12 | <sourceEncoding>UTF-8</sourceEncoding> |
||
| 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||
| 14 | <java.version>1.8</java.version> |
||
| 15 | |||
| 16 | <tomcat-maven-plugin.version>2.2</tomcat-maven-plugin.version> |
||
| 17 | <tomcat.version>7.0.76</tomcat.version> |
||
| 18 | <tomcat.contextFile>${project.build.directory}/${project.build.finalName}/WEB-INF/tomcat-env.xml</tomcat.contextFile> |
||
| 19 | |||
| 20 | <espacocase-framework.version>2.1.2-SNAPSHOT</espacocase-framework.version> |
||
| 21 | |||
| 22 | <springsecurity.version>5.0.19.RELEASE</springsecurity.version> |
||
| 23 | |||
| 24 | <servlet-api.version>3.0.1</servlet-api.version> |
||
| 25 | <tomcat-servlet-api.version>7.0.21</tomcat-servlet-api.version> |
||
| 26 | <servlet-jsp-api.version>2.1</servlet-jsp-api.version> |
||
| 27 | |||
| 28 | <primefaces.version>10.0.0</primefaces.version> |
||
| 29 | <poseidon.version>3.0.0</poseidon.version> |
||
| 30 | |||
| 31 | <!-- <javaxfaces.version>2.2.6</javaxfaces.version> --> |
||
| 32 | <javaxfaces.version>2.3.0-m02</javaxfaces.version> |
||
| 33 | |||
| 34 | <spring.version>5.0.19.RELEASE</spring.version> |
||
| 35 | |||
| 36 | <!-- <postgresql.version>8.4-702.jdbc4</postgresql.version> --> |
||
| 37 | <postgresql.version>9.3-1100-jdbc41</postgresql.version> |
||
| 38 | <postgresql-driver.version>42.2.15</postgresql-driver.version> |
||
| 39 | |||
| 40 | <validation-api.version>1.1.0.Final</validation-api.version> |
||
| 41 | |||
| 42 | <hibernate-jpa-api.version>1.0.2.Final</hibernate-jpa-api.version> |
||
| 43 | <hibernate.version>5.3.4.Final</hibernate.version> |
||
| 44 | |||
| 45 | <c3p0.version>0.9.1.2</c3p0.version> |
||
| 46 | |||
| 47 | <!-- FUTURO FRAMEWORK |
||
| 48 | <slf4j.version>1.5.11</slf4j.version> |
||
| 49 | <aspectj.version>1.6.12</aspectj.version> |
||
| 50 | --> |
||
| 51 | </properties> |
||
| 52 | |||
| 53 | <dependencies> |
||
| 54 | |||
| 55 | <!-- FRAMEWORK --> |
||
| 56 | <dependency> |
||
| 57 | <groupId>br.com.ec</groupId> |
||
| 58 | <artifactId>espacocase-framework-core</artifactId> |
||
| 59 | <version>${espacocase-framework.version}</version> |
||
| 60 | </dependency> |
||
| 61 | <dependency> |
||
| 62 | <groupId>br.com.ec</groupId> |
||
| 63 | <artifactId>espacocase-framework-relatorio</artifactId> |
||
| 64 | <version>${espacocase-framework.version}</version> |
||
| 65 | </dependency> |
||
| 66 | <dependency> |
||
| 67 | <groupId>br.com.ec</groupId> |
||
| 68 | <artifactId>espacocase-framework-web</artifactId> |
||
| 69 | <version>${espacocase-framework.version}</version> |
||
| 70 | </dependency> |
||
| 71 | |||
| 72 | <!-- CONTROLLER --> |
||
| 73 | <dependency> |
||
| 74 | <groupId>javax.servlet</groupId> |
||
| 75 | <artifactId>javax.servlet-api</artifactId> |
||
| 76 | <version>${servlet-api.version}</version> |
||
| 77 | <scope>provided</scope> |
||
| 78 | </dependency> |
||
| 79 | <dependency> |
||
| 80 | <groupId>org.apache.tomcat</groupId> |
||
| 81 | <artifactId>tomcat-servlet-api</artifactId> |
||
| 82 | <version>${tomcat-servlet-api.version}</version> |
||
| 83 | <scope>provided</scope> |
||
| 84 | </dependency> |
||
| 85 | <dependency> |
||
| 86 | <groupId>javax.servlet.jsp</groupId> |
||
| 87 | <artifactId>jsp-api</artifactId> |
||
| 88 | <version>${servlet-jsp-api.version}</version> |
||
| 89 | <scope>provided</scope> |
||
| 90 | </dependency> |
||
| 91 | |||
| 92 | <dependency> |
||
| 93 | <groupId>org.primefaces</groupId> |
||
| 94 | <artifactId>primefaces</artifactId> |
||
| 95 | <version>${primefaces.version}</version> |
||
| 96 | </dependency> |
||
| 97 | <dependency> |
||
| 98 | <groupId>org.primefaces.extensions</groupId> |
||
| 99 | <artifactId>primefaces-extensions</artifactId> |
||
| 100 | <version>${primefaces.version}</version> |
||
| 101 | </dependency> |
||
| 102 | <dependency> |
||
| 103 | <groupId>org.primefaces.poseidon</groupId> |
||
| 104 | <artifactId>poseidon</artifactId> |
||
| 105 | <version>${poseidon.version}</version> |
||
| 106 | </dependency> |
||
| 107 | |||
| 108 | <dependency> |
||
| 109 | <groupId>org.glassfish</groupId> |
||
| 110 | <artifactId>javax.faces</artifactId> |
||
| 111 | <version>${javaxfaces.version}</version> |
||
| 112 | </dependency> |
||
| 113 | |||
| 114 | <!-- SPRING SECURITY --> |
||
| 115 | <dependency> |
||
| 116 | <groupId>org.springframework.security</groupId> |
||
| 117 | <artifactId>spring-security-web</artifactId> |
||
| 118 | <version>${spring.version}</version> |
||
| 119 | </dependency> |
||
| 120 | <dependency> |
||
| 121 | <groupId>org.springframework.security</groupId> |
||
| 122 | <artifactId>spring-security-config</artifactId> |
||
| 123 | <version>${spring.version}</version> |
||
| 124 | </dependency> |
||
| 125 | <dependency> |
||
| 126 | <groupId>org.springframework.security</groupId> |
||
| 127 | <artifactId>spring-security-core</artifactId> |
||
| 128 | <version>${spring.version}</version> |
||
| 129 | </dependency> |
||
| 130 | <dependency> |
||
| 131 | <groupId>org.springframework.security</groupId> |
||
| 132 | <artifactId>spring-security-acl</artifactId> |
||
| 133 | <version>${spring.version}</version> |
||
| 134 | </dependency> |
||
| 135 | |||
| 136 | <!-- REPOSITORY --> |
||
| 137 | <dependency> |
||
| 138 | <groupId>org.postgresql</groupId> |
||
| 139 | <artifactId>postgresql</artifactId> |
||
| 140 | <version>${postgresql.version}</version> |
||
| 141 | <scope>runtime</scope> |
||
| 142 | </dependency> |
||
| 143 | |||
| 144 | <!-- |
||
| 145 | <dependency> |
||
| 146 | <groupId>org.postgresql</groupId> |
||
| 147 | <artifactId>postgresql</artifactId> |
||
| 148 | <version>${postgresql-driver.version}</version> |
||
| 149 | <scope>runtime</scope> |
||
| 150 | </dependency> |
||
| 151 | --> |
||
| 152 | |||
| 153 | <dependency> |
||
| 154 | <groupId>org.springframework</groupId> |
||
| 155 | <artifactId>spring-core</artifactId> |
||
| 156 | <version>${spring.version}</version> |
||
| 157 | </dependency> |
||
| 158 | <dependency> |
||
| 159 | <groupId>org.springframework</groupId> |
||
| 160 | <artifactId>spring-context</artifactId> |
||
| 161 | <version>${spring.version}</version> |
||
| 162 | </dependency> |
||
| 163 | <dependency> |
||
| 164 | <groupId>org.springframework</groupId> |
||
| 165 | <artifactId>spring-web</artifactId> |
||
| 166 | <version>${spring.version}</version> |
||
| 167 | </dependency> |
||
| 168 | <dependency> |
||
| 169 | <groupId>org.springframework</groupId> |
||
| 170 | <artifactId>spring-tx</artifactId> |
||
| 171 | <version>${spring.version}</version> |
||
| 172 | </dependency> |
||
| 173 | <dependency> |
||
| 174 | <groupId>org.springframework</groupId> |
||
| 175 | <artifactId>spring-aspects</artifactId> |
||
| 176 | <version>${spring.version}</version> |
||
| 177 | </dependency> |
||
| 178 | <dependency> |
||
| 179 | <groupId>org.springframework</groupId> |
||
| 180 | <artifactId>spring-orm</artifactId> |
||
| 181 | <version>${spring.version}</version> |
||
| 182 | </dependency> |
||
| 183 | <dependency> |
||
| 184 | <groupId>org.springframework</groupId> |
||
| 185 | <artifactId>spring-webmvc</artifactId> |
||
| 186 | <version>${spring.version}</version> |
||
| 187 | </dependency> |
||
| 188 | |||
| 189 | <dependency> |
||
| 190 | <groupId>br.com.ec</groupId> |
||
| 191 | <artifactId>relatorio-font-arial</artifactId> |
||
| 192 | <version>1.0</version> |
||
| 193 | </dependency> |
||
| 194 | |||
| 195 | <dependency> |
||
| 196 | <groupId>javax.validation</groupId> |
||
| 197 | <artifactId>validation-api</artifactId> |
||
| 198 | <version>${validation-api.version}</version> |
||
| 199 | </dependency> |
||
| 200 | |||
| 201 | <dependency> |
||
| 202 | <groupId>org.hibernate.javax.persistence</groupId> |
||
| 203 | <artifactId>hibernate-jpa-2.1-api</artifactId> |
||
| 204 | <version>${hibernate-jpa-api.version}</version> |
||
| 205 | </dependency> |
||
| 206 | |||
| 207 | <dependency> |
||
| 208 | <groupId>javax.persistence</groupId> |
||
| 209 | <artifactId>javax.persistence-api</artifactId> |
||
| 210 | <version>2.2</version> |
||
| 211 | </dependency> |
||
| 212 | |||
| 213 | <dependency> |
||
| 214 | <groupId>org.hibernate</groupId> |
||
| 215 | <artifactId>hibernate-core</artifactId> |
||
| 216 | <version>${hibernate.version}</version> |
||
| 217 | <scope>compile</scope> |
||
| 218 | </dependency> |
||
| 219 | <dependency> |
||
| 220 | <groupId>org.hibernate</groupId> |
||
| 221 | <artifactId>hibernate-validator</artifactId> |
||
| 222 | <version>${hibernate.version}</version> |
||
| 223 | </dependency> |
||
| 224 | |||
| 225 | |||
| 226 | <!-- C3P0 --> |
||
| 227 | <dependency> |
||
| 228 | <groupId>org.hibernate</groupId> |
||
| 229 | <artifactId>hibernate-c3p0</artifactId> |
||
| 230 | <version>${hibernate.version}</version> |
||
| 231 | </dependency> |
||
| 232 | <dependency> |
||
| 233 | <groupId>c3p0</groupId> |
||
| 234 | <artifactId>c3p0</artifactId> |
||
| 235 | <version>${c3p0.version}</version> |
||
| 236 | </dependency> |
||
| 237 | |||
| 238 | <!-- TESTE --> |
||
| 239 | <dependency> |
||
| 240 | <groupId>org.hibernate</groupId> |
||
| 241 | <artifactId>hibernate-envers</artifactId> |
||
| 242 | <version>${hibernate.version}</version> |
||
| 243 | </dependency> |
||
| 244 | |||
| 245 | <dependency> |
||
| 246 | <groupId>org.hibernate</groupId> |
||
| 247 | <artifactId>hibernate-validator-annotation-processor</artifactId> |
||
| 248 | <version>${hibernate.version}</version> |
||
| 249 | </dependency> |
||
| 250 | <dependency> |
||
| 251 | <groupId>org.hibernate</groupId> |
||
| 252 | <artifactId>hibernate-validator-cdi</artifactId> |
||
| 253 | <version>${hibernate.version}</version> |
||
| 254 | </dependency> |
||
| 255 | <dependency> |
||
| 256 | <groupId>org.hibernate</groupId> |
||
| 257 | <artifactId>hibernate-entitymanager</artifactId> |
||
| 258 | <version>${hibernate.version}</version> |
||
| 259 | <scope>compile</scope> |
||
| 260 | </dependency> |
||
| 261 | <dependency> |
||
| 262 | <groupId>org.hibernate</groupId> |
||
| 263 | <artifactId>hibernate-core-jakarta</artifactId> |
||
| 264 | <version>5.5.0.Final</version> |
||
| 265 | </dependency> |
||
| 266 | <dependency> |
||
| 267 | <groupId>org.glassfish.jaxb</groupId> |
||
| 268 | <artifactId>jaxb-runtime</artifactId> |
||
| 269 | <version>3.0.0</version> |
||
| 270 | </dependency> |
||
| 271 | |||
| 272 | <dependency> |
||
| 273 | <groupId>com.mchange</groupId> |
||
| 274 | <artifactId>mchange-commons-java</artifactId> |
||
| 275 | <version>0.2.10</version> |
||
| 276 | </dependency> |
||
| 277 | |||
| 278 | <dependency> |
||
| 279 | <groupId>commons-io</groupId> |
||
| 280 | <artifactId>commons-io</artifactId> |
||
| 281 | <version>2.5</version> |
||
| 282 | </dependency> |
||
| 283 | |||
| 284 | <dependency> |
||
| 285 | <groupId>commons-fileupload</groupId> |
||
| 286 | <artifactId>commons-fileupload</artifactId> |
||
| 287 | <version>1.3</version> |
||
| 288 | </dependency> |
||
| 289 | |||
| 290 | <dependency> |
||
| 291 | <groupId>com.itextpdf</groupId> |
||
| 292 | <artifactId>itextpdf</artifactId> |
||
| 293 | <version>5.4.0</version> |
||
| 294 | </dependency> |
||
| 295 | |||
| 296 | <dependency> |
||
| 297 | <groupId>org.apache.poi</groupId> |
||
| 298 | <artifactId>poi-ooxml</artifactId> |
||
| 299 | <version>3.17</version> |
||
| 300 | </dependency> |
||
| 301 | |||
| 302 | <dependency> |
||
| 303 | <groupId>org.apache.poi</groupId> |
||
| 304 | <artifactId>poi</artifactId> |
||
| 305 | <version>3.17</version> |
||
| 306 | </dependency> |
||
| 307 | |||
| 308 | <dependency> |
||
| 309 | <groupId>org.projectlombok</groupId> |
||
| 310 | <artifactId>lombok</artifactId> |
||
| 311 | <version>1.18.2</version> |
||
| 312 | </dependency> |
||
| 313 | |||
| 314 | <dependency> |
||
| 315 | <groupId>br.com.swconsultoria</groupId> |
||
| 316 | <artifactId>java-nfe</artifactId> |
||
| 317 | <version>4.00.26</version> |
||
| 318 | </dependency> |
||
| 319 | |||
| 320 | <dependency> |
||
| 321 | <groupId>org.jdom</groupId> |
||
| 322 | <artifactId>jdom2</artifactId> |
||
| 323 | <version>2.0.6</version> |
||
| 324 | </dependency> |
||
| 325 | |||
| 326 | <dependency> |
||
| 327 | <groupId>net.sourceforge.barbecue</groupId> |
||
| 328 | <artifactId>barbecue</artifactId> |
||
| 329 | <version>1.5-beta1</version> |
||
| 330 | </dependency> |
||
| 331 | |||
| 332 | <!-- |
||
| 333 | <dependency> |
||
| 334 | <groupId>org.apache.axis2</groupId> |
||
| 335 | <artifactId>axis2-transport-http</artifactId> |
||
| 336 | <version>1.8.2</version> |
||
| 337 | </dependency> |
||
| 338 | --> |
||
| 339 | <!-- |
||
| 340 | <dependency> |
||
| 341 | <groupId>org.jboss.logging</groupId> |
||
| 342 | <artifactId>jboss-logging</artifactId> |
||
| 343 | <version>3.3.0.Final</version> |
||
| 344 | </dependency> |
||
| 345 | --> |
||
| 346 | |||
| 347 | <!-- |
||
| 348 | <dependency> |
||
| 349 | <groupId>com.sun.xml.fastinfoset</groupId> |
||
| 350 | <artifactId>fastInfoset</artifactId> |
||
| 351 | <version>1.2.15</version> |
||
| 352 | </dependency> |
||
| 353 | <dependency> |
||
| 354 | <groupId>org.slf4j</groupId> |
||
| 355 | <artifactId>slf4j-nop</artifactId> |
||
| 356 | <version>${slf4j.version}</version> |
||
| 357 | </dependency> |
||
| 358 | <dependency> |
||
| 359 | <groupId>com.fasterxml.jackson.core</groupId> |
||
| 360 | <artifactId>jackson-databind</artifactId> |
||
| 361 | <version>2.12.2</version> |
||
| 362 | </dependency> |
||
| 363 | <dependency> |
||
| 364 | <groupId>com.fasterxml.jackson.core</groupId> |
||
| 365 | <artifactId>jackson-annotations</artifactId> |
||
| 366 | <version>2.12.2</version> |
||
| 367 | </dependency> |
||
| 368 | <dependency> |
||
| 369 | <groupId>org.glassfish.jaxb</groupId> |
||
| 370 | <artifactId>txw2</artifactId> |
||
| 371 | <version>2.3.1</version> |
||
| 372 | </dependency> |
||
| 373 | <dependency> |
||
| 374 | <groupId>com.sun.istack</groupId> |
||
| 375 | <artifactId>istack-commons-runtime</artifactId> |
||
| 376 | <version>3.0.7</version> |
||
| 377 | </dependency> |
||
| 378 | <dependency> |
||
| 379 | <groupId>javax.xml.bind</groupId> |
||
| 380 | <artifactId>jaxb-api</artifactId> |
||
| 381 | <version>2.3.1</version> |
||
| 382 | </dependency> |
||
| 383 | --> |
||
| 384 | </dependencies> |
||
| 385 | |||
| 386 | <repositories> |
||
| 387 | <repository> |
||
| 388 | <id>central-repo1</id> |
||
| 389 | <url>https://repo1.maven.org/maven2/</url> |
||
| 390 | <releases> |
||
| 391 | <enabled>true</enabled> |
||
| 392 | </releases> |
||
| 393 | <snapshots> |
||
| 394 | <enabled>false</enabled> |
||
| 395 | </snapshots> |
||
| 396 | </repository> |
||
| 397 | |||
| 398 | <!-- |
||
| 399 | <repository> |
||
| 400 | <id>prime-repo</id> |
||
| 401 | <name>PrimeFaces Maven Repository</name> |
||
| 402 | <url>http://repository.primefaces.org</url> |
||
| 403 | <layout>default</layout> |
||
| 404 | </repository> |
||
| 405 | --> |
||
| 406 | </repositories> |
||
| 407 | |||
| 408 | <build> |
||
| 409 | <plugins> |
||
| 410 | <plugin> |
||
| 411 | <groupId>org.apache.maven.plugins</groupId> |
||
| 412 | <artifactId>maven-compiler-plugin</artifactId> |
||
| 413 | <version>3.0</version> |
||
| 414 | <configuration> |
||
| 415 | <source>${java.version}</source> |
||
| 416 | <target>${java.version}</target> |
||
| 417 | </configuration> |
||
| 418 | </plugin> |
||
| 419 | <plugin> |
||
| 420 | <groupId>org.apache.maven.plugins</groupId> |
||
| 421 | <artifactId>maven-deploy-plugin</artifactId> |
||
| 422 | </plugin> |
||
| 423 | |||
| 424 | <plugin> |
||
| 425 | <groupId>org.apache.maven.plugins</groupId> |
||
| 426 | <artifactId>maven-resources-plugin</artifactId> |
||
| 427 | <version>2.6</version> |
||
| 428 | <configuration> |
||
| 429 | <nonFilteredFileExtensions> |
||
| 430 | <nonFilteredFileExtension>jasper</nonFilteredFileExtension> |
||
| 431 | </nonFilteredFileExtensions> |
||
| 432 | </configuration> |
||
| 433 | </plugin> |
||
| 434 | |||
| 435 | <plugin> |
||
| 436 | <groupId>org.apache.tomcat.maven</groupId> |
||
| 437 | <artifactId>tomcat7-maven-plugin</artifactId> |
||
| 438 | <version>${tomcat-maven-plugin.version}</version> |
||
| 439 | <configuration> |
||
| 440 | <contextFile>${tomcat.contextFile}</contextFile> |
||
| 441 | <port>8083</port> |
||
| 442 | </configuration> |
||
| 443 | </plugin> |
||
| 444 | |||
| 445 | <!-- |
||
| 446 | <plugin> |
||
| 447 | <groupId>org.apache.maven.plugins</groupId> |
||
| 448 | <artifactId>maven-war-plugin</artifactId> |
||
| 449 | <version>2.6</version> |
||
| 450 | <configuration> |
||
| 451 | <failOnMissingWebXml>false</failOnMissingWebXml> |
||
| 452 | </configuration> |
||
| 453 | </plugin> |
||
| 454 | <plugin> |
||
| 455 | <groupId>org.apache.tomcat.maven</groupId> |
||
| 456 | <artifactId>tomcat7-maven-plugin</artifactId> |
||
| 457 | <version>${tomcat-maven-plugin.version}</version> |
||
| 458 | <configuration> |
||
| 459 | <contextFile>${tomcat.contextFile}</contextFile> |
||
| 460 | <port>8083</port> |
||
| 461 | </configuration> |
||
| 462 | </plugin> |
||
| 463 | --> |
||
| 464 | </plugins> |
||
| 465 | </build> |
||
| 466 | |||
| 467 | </project> |