Details | 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>sic</artifactId> |
||
| 6 | <version>1.2.0</version> |
||
| 7 | </parent> |
||
| 8 | <artifactId>sic-core</artifactId> |
||
| 9 | |||
| 10 | <dependencies> |
||
| 11 | <!-- MODULOS --> |
||
| 12 | <dependency> |
||
| 13 | <groupId>br.edu.cesmac</groupId> |
||
| 14 | <artifactId>cesmac-framework-core</artifactId> |
||
| 15 | </dependency> |
||
| 16 | |||
| 17 | <dependency> |
||
| 18 | <groupId>br.edu.cesmac</groupId> |
||
| 19 | <artifactId>cesmac-framework-views</artifactId> |
||
| 20 | </dependency> |
||
| 21 | |||
| 22 | <dependency> |
||
| 23 | <groupId>br.edu.cesmac</groupId> |
||
| 24 | <artifactId>sca-seguranca</artifactId> |
||
| 25 | </dependency> |
||
| 26 | |||
| 27 | <dependency> |
||
| 28 | <groupId>br.edu.cesmac</groupId> |
||
| 29 | <artifactId>sac-shared</artifactId> |
||
| 30 | </dependency> |
||
| 31 | |||
| 32 | <dependency> |
||
| 33 | <groupId>br.edu.cesmac</groupId> |
||
| 34 | <artifactId>scf-shared</artifactId> |
||
| 35 | </dependency> |
||
| 36 | |||
| 37 | <dependency> |
||
| 38 | <groupId>br.edu.cesmac</groupId> |
||
| 39 | <artifactId>cesmac-framework-relatorio</artifactId> |
||
| 40 | <exclusions> |
||
| 41 | <exclusion> |
||
| 42 | <groupId>net.sf.jasperreports</groupId> |
||
| 43 | <artifactId>jasperreports</artifactId> |
||
| 44 | </exclusion> |
||
| 45 | </exclusions> |
||
| 46 | </dependency> |
||
| 47 | <dependency> |
||
| 48 | <groupId>net.sf.jasperreports</groupId> |
||
| 49 | <artifactId>jasperreports</artifactId> |
||
| 50 | <version>6.1.1</version> |
||
| 51 | </dependency> |
||
| 52 | |||
| 53 | <dependency> |
||
| 54 | <groupId>br.edu.cesmac</groupId> |
||
| 55 | <artifactId>relatorio-font-arial</artifactId> |
||
| 56 | </dependency> |
||
| 57 | |||
| 58 | <!-- Hibernate dependency --> |
||
| 59 | <dependency> |
||
| 60 | <groupId>org.hibernate</groupId> |
||
| 61 | <artifactId>hibernate-core</artifactId> |
||
| 62 | <scope>compile</scope> |
||
| 63 | </dependency> |
||
| 64 | |||
| 65 | <dependency> |
||
| 66 | <groupId>org.hibernate</groupId> |
||
| 67 | <artifactId>hibernate-envers</artifactId> |
||
| 68 | </dependency> |
||
| 69 | |||
| 70 | <!-- MSSQL Server Java Connector dependency --> |
||
| 71 | <dependency> |
||
| 72 | <groupId>net.sourceforge.jtds</groupId> |
||
| 73 | <artifactId>jtds</artifactId> |
||
| 74 | </dependency> |
||
| 75 | |||
| 76 | <!-- c3p0 dependency --> |
||
| 77 | <dependency> |
||
| 78 | <groupId>c3p0</groupId> |
||
| 79 | <artifactId>c3p0</artifactId> |
||
| 80 | </dependency> |
||
| 81 | |||
| 82 | <dependency> |
||
| 83 | <groupId>org.aspectj</groupId> |
||
| 84 | <artifactId>aspectjrt</artifactId> |
||
| 85 | </dependency> |
||
| 86 | <dependency> |
||
| 87 | <groupId>org.aspectj</groupId> |
||
| 88 | <artifactId>aspectjweaver</artifactId> |
||
| 89 | </dependency> |
||
| 90 | <dependency> |
||
| 91 | <groupId>org.slf4j</groupId> |
||
| 92 | <artifactId>slf4j-nop</artifactId> |
||
| 93 | </dependency> |
||
| 94 | |||
| 95 | <!-- Spring 3 dependencies --> |
||
| 96 | <dependency> |
||
| 97 | <groupId>org.springframework</groupId> |
||
| 98 | <artifactId>spring-core</artifactId> |
||
| 99 | </dependency> |
||
| 100 | |||
| 101 | <dependency> |
||
| 102 | <groupId>org.springframework</groupId> |
||
| 103 | <artifactId>spring-context</artifactId> |
||
| 104 | </dependency> |
||
| 105 | |||
| 106 | <dependency> |
||
| 107 | <groupId>org.springframework</groupId> |
||
| 108 | <artifactId>spring-tx</artifactId> |
||
| 109 | </dependency> |
||
| 110 | |||
| 111 | <dependency> |
||
| 112 | <groupId>org.springframework</groupId> |
||
| 113 | <artifactId>spring-aspects</artifactId> |
||
| 114 | </dependency> |
||
| 115 | |||
| 116 | <!-- Dependências do Spring Security --> |
||
| 117 | <dependency> |
||
| 118 | <groupId>org.springframework.security</groupId> |
||
| 119 | <artifactId>spring-security-web</artifactId> |
||
| 120 | </dependency> |
||
| 121 | <dependency> |
||
| 122 | <groupId>org.springframework.security</groupId> |
||
| 123 | <artifactId>spring-security-config</artifactId> |
||
| 124 | </dependency> |
||
| 125 | <dependency> |
||
| 126 | <groupId>org.springframework.security</groupId> |
||
| 127 | <artifactId>spring-security-core</artifactId> |
||
| 128 | </dependency> |
||
| 129 | <dependency> |
||
| 130 | <groupId>org.springframework.security</groupId> |
||
| 131 | <artifactId>spring-security-acl</artifactId> |
||
| 132 | </dependency> |
||
| 133 | |||
| 134 | <dependency> |
||
| 135 | <groupId>org.aspectj</groupId> |
||
| 136 | <artifactId>aspectjrt</artifactId> |
||
| 137 | </dependency> |
||
| 138 | <dependency> |
||
| 139 | <groupId>org.aspectj</groupId> |
||
| 140 | <artifactId>aspectjweaver</artifactId> |
||
| 141 | </dependency> |
||
| 142 | |||
| 143 | <!-- Dependencias de Teste --> |
||
| 144 | <dependency> |
||
| 145 | <groupId>junit</groupId> |
||
| 146 | <artifactId>junit</artifactId> |
||
| 147 | <scope>test</scope> |
||
| 148 | </dependency> |
||
| 149 | <dependency> |
||
| 150 | <groupId>org.jmock</groupId> |
||
| 151 | <artifactId>jmock-junit4</artifactId> |
||
| 152 | <scope>test</scope> |
||
| 153 | </dependency> |
||
| 154 | <dependency> |
||
| 155 | <groupId>org.jmock</groupId> |
||
| 156 | <artifactId>jmock-legacy</artifactId> |
||
| 157 | <scope>test</scope> |
||
| 158 | </dependency> |
||
| 159 | <dependency> |
||
| 160 | <groupId>org.springframework</groupId> |
||
| 161 | <artifactId>spring-test</artifactId> |
||
| 162 | <scope>test</scope> |
||
| 163 | </dependency> |
||
| 164 | |||
| 165 | <dependency> |
||
| 166 | <groupId>br.edu.cesmac</groupId> |
||
| 167 | <artifactId>cesmac-framework-test</artifactId> |
||
| 168 | <scope>test</scope> |
||
| 169 | </dependency> |
||
| 170 | |||
| 171 | <!-- Fim das dependencias de Teste --> |
||
| 172 | |||
| 173 | <!-- log4j |
||
| 174 | <dependency> |
||
| 175 | <groupId>log4j</groupId> |
||
| 176 | <artifactId>log4j</artifactId> |
||
| 177 | </dependency> |
||
| 178 | --> |
||
| 179 | |||
| 180 | <dependency> |
||
| 181 | <groupId>org.apache.poi</groupId> |
||
| 182 | <artifactId>ooxml-schemas</artifactId> |
||
| 183 | </dependency> |
||
| 184 | |||
| 185 | <dependency> |
||
| 186 | <groupId>org.apache.poi</groupId> |
||
| 187 | <artifactId>poi-ooxml-schemas</artifactId> |
||
| 188 | </dependency> |
||
| 189 | |||
| 190 | <dependency> |
||
| 191 | <groupId>org.apache.commons</groupId> |
||
| 192 | <artifactId>commons-email</artifactId> |
||
| 193 | <version>1.3.2</version> |
||
| 194 | </dependency> |
||
| 195 | |||
| 196 | <dependency> |
||
| 197 | <groupId>javax.servlet</groupId> |
||
| 198 | <artifactId>servlet-api</artifactId> |
||
| 199 | <scope>provided</scope> |
||
| 200 | </dependency> |
||
| 201 | </dependencies> |
||
| 202 | |||
| 203 | <build> |
||
| 204 | <plugins> |
||
| 205 | <!-- Configuração de execução de testes --> |
||
| 206 | <plugin> |
||
| 207 | <groupId>org.apache.maven.plugins</groupId> |
||
| 208 | <artifactId>maven-surefire-plugin</artifactId> |
||
| 209 | <version>2.5</version> |
||
| 210 | <configuration> |
||
| 211 | <argLine>-Xms512m -Xmx1024m</argLine> |
||
| 212 | <includes> |
||
| 213 | <include>br/gov/al/saude/**/core/UnitTests.java</include> |
||
| 214 | </includes> |
||
| 215 | </configuration> |
||
| 216 | <executions> |
||
| 217 | <execution> |
||
| 218 | <phase>integration-test</phase> |
||
| 219 | <goals> |
||
| 220 | <goal>test</goal> |
||
| 221 | </goals> |
||
| 222 | <configuration> |
||
| 223 | <includes> |
||
| 224 | <include>br/gov/al/saude/**/core/ChamadaDiretaTests.java</include> |
||
| 225 | </includes> |
||
| 226 | </configuration> |
||
| 227 | </execution> |
||
| 228 | </executions> |
||
| 229 | </plugin> |
||
| 230 | </plugins> |
||
| 231 | </build> |
||
| 232 | </project> |