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