Rev 1 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | <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/xsd/maven-4.0.0.xsd"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
||
| 3 | <parent> |
||
| 4 | <groupId>br.edu.cesmac</groupId> |
||
| 5 | <artifactId>cesmac-framework</artifactId> |
||
| 6 | <version>1.12.0-SNAPSHOT</version> |
||
| 7 | </parent> |
||
| 8 | <artifactId>cesmac-framework-test</artifactId> |
||
| 9 | <name>Framework Test</name> |
||
| 10 | |||
| 11 | <dependencies> |
||
| 12 | <dependency> |
||
| 13 | <groupId>br.edu.cesmac</groupId> |
||
| 14 | <artifactId>cesmac-framework-core</artifactId> |
||
| 15 | </dependency> |
||
| 16 | <dependency> |
||
| 17 | <groupId>br.edu.cesmac</groupId> |
||
| 18 | <artifactId>cesmac-framework-web</artifactId> |
||
| 19 | </dependency> |
||
| 20 | |||
| 21 | <dependency> |
||
| 22 | <groupId>junit</groupId> |
||
| 23 | <artifactId>junit</artifactId> |
||
| 24 | </dependency> |
||
| 25 | <dependency> |
||
| 26 | <groupId>org.jmock</groupId> |
||
| 27 | <artifactId>jmock-junit4</artifactId> |
||
| 28 | </dependency> |
||
| 29 | <dependency> |
||
| 30 | <groupId>org.jmock</groupId> |
||
| 31 | <artifactId>jmock-legacy</artifactId> |
||
| 32 | </dependency> |
||
| 33 | <dependency> |
||
| 34 | <groupId>org.springframework</groupId> |
||
| 35 | <artifactId>spring-test</artifactId> |
||
| 36 | </dependency> |
||
| 37 | <dependency> |
||
| 38 | <groupId>org.springframework</groupId> |
||
| 39 | <artifactId>spring-orm</artifactId> |
||
| 40 | </dependency> |
||
| 41 | <dependency> |
||
| 42 | <groupId>org.springframework</groupId> |
||
| 43 | <artifactId>spring-context</artifactId> |
||
| 44 | </dependency> |
||
| 45 | <dependency> |
||
| 46 | <groupId>org.springframework</groupId> |
||
| 47 | <artifactId>spring-aop</artifactId> |
||
| 48 | </dependency> |
||
| 49 | <dependency> |
||
| 50 | <groupId>org.springframework</groupId> |
||
| 51 | <artifactId>spring-aspects</artifactId> |
||
| 52 | </dependency> |
||
| 53 | <dependency> |
||
| 54 | <groupId>org.springframework</groupId> |
||
| 55 | <artifactId>spring-expression</artifactId> |
||
| 56 | </dependency> |
||
| 57 | <dependency> |
||
| 58 | <groupId>org.aspectj</groupId> |
||
| 59 | <artifactId>aspectjrt</artifactId> |
||
| 60 | </dependency> |
||
| 61 | <dependency> |
||
| 62 | <groupId>org.hibernate</groupId> |
||
| 63 | <artifactId>hibernate-validator</artifactId> |
||
| 64 | </dependency> |
||
| 65 | <dependency> |
||
| 66 | <groupId>org.hibernate.javax.persistence</groupId> |
||
| 67 | <artifactId>hibernate-jpa-2.0-api</artifactId> |
||
| 68 | </dependency> |
||
| 69 | |||
| 70 | <dependency> |
||
| 71 | <groupId>org.slf4j</groupId> |
||
| 72 | <artifactId>slf4j-nop</artifactId> |
||
| 73 | <version>1.5.11</version> |
||
| 74 | </dependency> |
||
| 75 | |||
| 76 | <!-- MSSQL Server Java Connector dependency --> |
||
| 77 | <!-- <dependency> |
||
| 78 | <groupId>com.microsoft.sqlserver</groupId> |
||
| 79 | <artifactId>sqljdbc4</artifactId> |
||
| 80 | <version>4.4.0</version> |
||
| 81 | </dependency> --> |
||
| 82 | |||
| 83 | <dependency> |
||
| 84 | <groupId>javax.el</groupId> |
||
| 85 | <artifactId>el-api</artifactId> |
||
| 86 | <version>1.0</version> |
||
| 87 | </dependency> |
||
| 88 | |||
| 89 | <dependency> |
||
| 90 | <groupId>org.dbunit</groupId> |
||
| 91 | <artifactId>dbunit</artifactId> |
||
| 92 | </dependency> |
||
| 93 | </dependencies> |
||
| 94 | </project> |