Subversion Repositories Integrator Subversion

Rev

Blame | Last modification | View Log | Download | RSS feed

<?xml version="1.0" encoding="UTF-8"?>
<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">
        <modelVersion>4.0.0</modelVersion>
        <parent>
                <artifactId>rhd</artifactId>
                <groupId>br.gov.al.saude</groupId>
                <version>1.6.1</version>
        </parent>

        <artifactId>rhd-core</artifactId>
        <name>Projeto Core</name>
        <description>Projeto Core, responsável pelas classe do core do sistema</description>

        <dependencies>
                <!-- MODULOS -->
                <dependency>
                        <groupId>br.gov.al.saude</groupId>
                        <artifactId>rhd-model</artifactId>
                </dependency>
                <dependency>
                        <groupId>br.gov.al.saude</groupId>
                        <artifactId>rhd-test</artifactId>
                </dependency>
                <dependency>
                        <groupId>br.gov.al.saude</groupId>
                        <artifactId>sesau-framework-security</artifactId>
                </dependency>

                <!-- SCA SECURITY -->
                <dependency>
                        <groupId>br.gov.al.saude</groupId>
                        <artifactId>sca-security</artifactId>
                </dependency>
               
                <!-- BANCO DE DADOS -->
                <dependency>
                        <groupId>postgresql</groupId>
                        <artifactId>postgresql</artifactId>
                        <scope>runtime</scope>
                </dependency>

                <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjrt</artifactId>
                </dependency>
                <dependency>
                        <groupId>org.aspectj</groupId>
                        <artifactId>aspectjweaver</artifactId>
                </dependency>
                <dependency>
                        <groupId>org.slf4j</groupId>
                        <artifactId>slf4j-nop</artifactId>
                </dependency>
               
                <!-- RELATORIOS -->
                <dependency>
                        <groupId>net.sf.jasperreports</groupId>
                        <artifactId>jasperreports</artifactId>
                </dependency>
                <dependency>
                        <groupId>com.itextpdf</groupId>
                        <artifactId>itextpdf</artifactId>
                </dependency>
               
                <dependency>
                        <groupId>commons-collections</groupId>
                        <artifactId>commons-collections</artifactId>
                </dependency>
               
                <dependency>
                        <groupId>commons-digester</groupId>
                        <artifactId>commons-digester</artifactId>
                </dependency>
                <dependency>
                        <groupId>com.lowagie</groupId>
                        <artifactId>itext</artifactId>
                        <version>2.1.7</version>
                </dependency>
                <dependency>
              <groupId>br.gov.al.saude</groupId>
              <artifactId>relatorio-font-arial</artifactId>
              <version>1.0</version>
            </dependency>
        </dependencies>

        <build>
                <plugins>
                        <!-- Configuração de execução de testes -->
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-surefire-plugin</artifactId>
                                <version>2.5</version>
                                <configuration>
                                        <argLine>-Xms512m -Xmx1024m</argLine>
                                        <includes>
                                                <include>br/gov/al/saude/**/core/UnitTests.java</include>
                                        </includes>
                                </configuration>
                                <executions>
                                        <execution>
                                                <phase>integration-test</phase>
                                                <goals>
                                                        <goal>test</goal>
                                                </goals>
                                                <configuration>
                                                        <includes>
                                                                <include>br/gov/al/saude/**/core/ChamadaDiretaTests.java</include>
                                                        </includes>
                                                </configuration>
                                        </execution>
                                </executions>
                        </plugin>
                </plugins>
        </build>
</project>