Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||
| 4 | <modelVersion>4.0.0</modelVersion> |
||
| 5 | <parent> |
||
| 6 | <artifactId>srv</artifactId> |
||
| 7 | <groupId>br.gov.al.saude</groupId> |
||
| 8 | <version>1.10.0-SNAPSHOT</version> |
||
| 9 | </parent> |
||
| 10 | |||
| 11 | <artifactId>srv-core</artifactId> |
||
| 12 | <name>Projeto Core</name> |
||
| 13 | <description>Projeto Core, responsável pelas classe do core do sistema</description> |
||
| 14 | |||
| 15 | <dependencies> |
||
| 16 | <!-- MODULOS --> |
||
| 17 | <dependency> |
||
| 18 | <groupId>br.gov.al.saude</groupId> |
||
| 19 | <artifactId>srv-model</artifactId> |
||
| 20 | </dependency> |
||
| 21 | <dependency> |
||
| 22 | <groupId>br.gov.al.saude</groupId> |
||
| 23 | <artifactId>srv-test</artifactId> |
||
| 24 | </dependency> |
||
| 25 | <dependency> |
||
| 26 | <groupId>br.gov.al.saude</groupId> |
||
| 27 | <artifactId>sesau-framework-security</artifactId> |
||
| 28 | </dependency> |
||
| 29 | |||
| 30 | <!-- SCA SECURITY --> |
||
| 31 | <dependency> |
||
| 32 | <groupId>br.gov.al.saude</groupId> |
||
| 33 | <artifactId>sca-security</artifactId> |
||
| 34 | </dependency> |
||
| 35 | |||
| 36 | <!-- BANCO DE DADOS --> |
||
| 37 | <dependency> |
||
| 38 | <groupId>postgresql</groupId> |
||
| 39 | <artifactId>postgresql</artifactId> |
||
| 40 | <scope>runtime</scope> |
||
| 41 | </dependency> |
||
| 42 | |||
| 43 | <!-- RELATORIOS --> |
||
| 44 | <dependency> |
||
| 45 | <groupId>net.sf.jasperreports</groupId> |
||
| 46 | <artifactId>jasperreports</artifactId> |
||
| 47 | </dependency> |
||
| 48 | <dependency> |
||
| 49 | <groupId>com.itextpdf</groupId> |
||
| 50 | <artifactId>itextpdf</artifactId> |
||
| 51 | </dependency> |
||
| 52 | <dependency> |
||
| 53 | <groupId>org.codehaus.groovy</groupId> |
||
| 54 | <artifactId>groovy-all</artifactId> |
||
| 55 | </dependency> |
||
| 56 | |||
| 57 | <dependency> |
||
| 58 | <groupId>commons-collections</groupId> |
||
| 59 | <artifactId>commons-collections</artifactId> |
||
| 60 | </dependency> |
||
| 61 | |||
| 62 | <dependency> |
||
| 63 | <groupId>commons-digester</groupId> |
||
| 64 | <artifactId>commons-digester</artifactId> |
||
| 65 | <version>2.1</version> |
||
| 66 | </dependency> |
||
| 67 | |||
| 68 | <dependency> |
||
| 69 | <groupId>com.lowagie</groupId> |
||
| 70 | <artifactId>itext</artifactId> |
||
| 71 | <version>2.1.7</version> |
||
| 72 | </dependency> |
||
| 73 | |||
| 74 | <dependency> |
||
| 75 | <groupId>org.aspectj</groupId> |
||
| 76 | <artifactId>aspectjrt</artifactId> |
||
| 77 | </dependency> |
||
| 78 | <dependency> |
||
| 79 | <groupId>org.aspectj</groupId> |
||
| 80 | <artifactId>aspectjweaver</artifactId> |
||
| 81 | </dependency> |
||
| 82 | <dependency> |
||
| 83 | <groupId>org.slf4j</groupId> |
||
| 84 | <artifactId>slf4j-nop</artifactId> |
||
| 85 | </dependency> |
||
| 86 | </dependencies> |
||
| 87 | |||
| 88 | <build> |
||
| 89 | <plugins> |
||
| 90 | <!-- Configuração de execução de testes --> |
||
| 91 | <plugin> |
||
| 92 | <groupId>org.apache.maven.plugins</groupId> |
||
| 93 | <artifactId>maven-surefire-plugin</artifactId> |
||
| 94 | <version>2.5</version> |
||
| 95 | <configuration> |
||
| 96 | <argLine>-Xms512m -Xmx1024m</argLine> |
||
| 97 | <includes> |
||
| 98 | <include>br/gov/al/saude/**/core/UnitTests.java</include> |
||
| 99 | </includes> |
||
| 100 | </configuration> |
||
| 101 | <executions> |
||
| 102 | <execution> |
||
| 103 | <phase>integration-test</phase> |
||
| 104 | <goals> |
||
| 105 | <goal>test</goal> |
||
| 106 | </goals> |
||
| 107 | <configuration> |
||
| 108 | <includes> |
||
| 109 | <include>br/gov/al/saude/**/core/ChamadaDiretaTests.java</include> |
||
| 110 | </includes> |
||
| 111 | </configuration> |
||
| 112 | </execution> |
||
| 113 | </executions> |
||
| 114 | </plugin> |
||
| 115 | </plugins> |
||
| 116 | </build> |
||
| 117 | </project> |