Subversion Repositories Integrator Subversion

Rev

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>rhd</artifactId>
7
                <groupId>br.gov.al.saude</groupId>
8
                <version>1.6.1</version>
9
        </parent>
10
 
11
        <artifactId>rhd-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>rhd-model</artifactId>
20
                </dependency>
21
                <dependency>
22
                        <groupId>br.gov.al.saude</groupId>
23
                        <artifactId>rhd-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
                <dependency>
44
                        <groupId>org.aspectj</groupId>
45
                        <artifactId>aspectjrt</artifactId>
46
                </dependency>
47
                <dependency>
48
                        <groupId>org.aspectj</groupId>
49
                        <artifactId>aspectjweaver</artifactId>
50
                </dependency>
51
                <dependency>
52
                        <groupId>org.slf4j</groupId>
53
                        <artifactId>slf4j-nop</artifactId>
54
                </dependency>
55
 
56
                <!-- RELATORIOS -->
57
                <dependency>
58
                        <groupId>net.sf.jasperreports</groupId>
59
                        <artifactId>jasperreports</artifactId>
60
                </dependency>
61
                <dependency>
62
                        <groupId>com.itextpdf</groupId>
63
                        <artifactId>itextpdf</artifactId>
64
                </dependency>
65
 
66
                <dependency>
67
                        <groupId>commons-collections</groupId>
68
                        <artifactId>commons-collections</artifactId>
69
                </dependency>
70
 
71
                <dependency>
72
                        <groupId>commons-digester</groupId>
73
                        <artifactId>commons-digester</artifactId>
74
                </dependency>
75
                <dependency>
76
                        <groupId>com.lowagie</groupId>
77
                        <artifactId>itext</artifactId>
78
                        <version>2.1.7</version>
79
                </dependency>
80
                <dependency>
81
              <groupId>br.gov.al.saude</groupId>
82
              <artifactId>relatorio-font-arial</artifactId>
83
              <version>1.0</version>
84
            </dependency>
85
        </dependencies>
86
 
87
        <build>
88
                <plugins>
89
                        <!-- Configuração de execução de testes -->
90
                        <plugin>
91
                                <groupId>org.apache.maven.plugins</groupId>
92
                                <artifactId>maven-surefire-plugin</artifactId>
93
                                <version>2.5</version>
94
                                <configuration>
95
                                        <argLine>-Xms512m -Xmx1024m</argLine>
96
                                        <includes>
97
                                                <include>br/gov/al/saude/**/core/UnitTests.java</include>
98
                                        </includes>
99
                                </configuration>
100
                                <executions>
101
                                        <execution>
102
                                                <phase>integration-test</phase>
103
                                                <goals>
104
                                                        <goal>test</goal>
105
                                                </goals>
106
                                                <configuration>
107
                                                        <includes>
108
                                                                <include>br/gov/al/saude/**/core/ChamadaDiretaTests.java</include>
109
                                                        </includes>
110
                                                </configuration>
111
                                        </execution>
112
                                </executions>
113
                        </plugin>
114
                </plugins>
115
        </build>
116
</project>