source: devel/testlink/automation2.0/pom.xml @ 4962

Revision 4962, 5.6 KB checked in by luiz-fernando, 13 years ago (diff)

Ticket #1771 - Adicionado testes automatizados para modulo da agenda

Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3        <modelVersion>4.0.0</modelVersion>
4        <groupId>br.gov.serpro.cte</groupId>
5        <artifactId>ExpressoAutomation2.0</artifactId>
6        <name>ExpressoAutomation2</name>
7        <url>http://maven.apache.org</url>
8        <version>0.0.1-SNAPSHOT</version>
9        <properties>
10                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11        </properties>
12        <pluginRepositories>
13                <pluginRepository>
14                        <id>testng-xslt-plugin</id>
15                        <url>http://www.cosminaru.ro/maven/</url>
16                </pluginRepository>
17        </pluginRepositories>
18        <reporting>
19                <plugins>
20                        <plugin>
21                                <groupId>org.testng.xslt</groupId>
22                                <artifactId>testng-xslt-plugin</artifactId>
23                                <version>1.1</version>
24                                <configuration>
25                                        <!--Setting the output directory -->
26                                        <!--<outputDir>${project.basedir}/target/site/${pom.artifactId}</outputDir> -->
27                                        <!--Setting the testNgXslt.showRuntimeTotals flag -->
28                                        <showRuntimeTotals>true</showRuntimeTotals>
29                                        <!--Setting the testNgXslt.cssFile parameter. This should be relative
30                                                to the '${basedir}/target/site/testng-xslt' directory -->
31                                        <sortTestCaseLinks>true</sortTestCaseLinks>
32                                        <testDetailsFilter>FAIL,PASS,SKIP,CONF</testDetailsFilter>
33                                </configuration>
34                        </plugin>
35                </plugins>
36        </reporting>
37
38        <build>
39                <plugins>
40                        <plugin>
41                                <groupId>org.apache.maven.plugins</groupId>
42                                <artifactId>maven-compiler-plugin</artifactId>
43                                <version>2.0.2</version>
44                                <configuration>
45                                        <source>1.6</source>
46                                        <target>1.6</target>
47                                </configuration>
48                        </plugin>
49
50                        <plugin>
51                                <artifactId>maven-surefire-plugin</artifactId>
52                                <version>2.4</version>
53                                <configuration>
54                                        <suiteXmlFiles>
55                                                <suiteXmlFile>[FUN02.1] - ComporMensagem.xml</suiteXmlFile>
56                                                <suiteXmlFile>[FUN02.2] - LerMensagem.xml</suiteXmlFile>
57                                                <suiteXmlFile>[FUN02.3] - ListarMensagem.xml</suiteXmlFile>
58                                                <suiteXmlFile>[FUN02.5] - ResponderMensagem.xml</suiteXmlFile>
59                                                <suiteXmlFile>[FUN02.6] - GerenciarPastas.xml</suiteXmlFile>
60                                                <suiteXmlFile>[FUN02.7] - GerenciarFiltros.xml</suiteXmlFile>
61                                                <suiteXmlFile>[FUN02.8] - PesquisarMensagem.xml</suiteXmlFile>
62                                        </suiteXmlFiles>
63                                        <testFailureIgnore>true</testFailureIgnore>
64                                </configuration>
65                        </plugin>
66                        <!--
67                        <plugin>
68                                <groupId>org.codehaus.mojo</groupId>
69                                <artifactId>aspectj-maven-plugin</artifactId>
70                                <version>1.3.1</version>
71                                <configuration>
72                                        <complianceLevel>1.6</complianceLevel>
73                                </configuration>
74                                <executions>
75                                        <execution>
76                                                <goals>
77                                                        <goal>compile</goal>
78                                                        <goal>test-compile</goal>
79                                                </goals>
80                                        </execution>
81                                </executions>
82                        </plugin>
83                         -->
84                        <plugin>
85                    <groupId>org.apache.maven.plugins</groupId>
86                    <artifactId>maven-surefire-plugin</artifactId>
87                    <version>2.5</version>
88                    <configuration>
89                        <properties>
90                            <property>
91                                <name>usedefaultlisteners</name>
92                                <value>false</value>
93                            </property>
94                            <property>
95                                <name>listener</name>
96                                <value>org.uncommons.reportng.HTMLReporter, org.uncommons.reportng.JUnitXMLReporter</value>
97                            </property>
98                        </properties>
99                        <workingDirectory>target/</workingDirectory>
100                    </configuration>
101                </plugin>                       
102                </plugins>
103        </build>
104
105        <repositories>
106                <repository>
107                        <id>maven2-repository.java.net</id>
108                        <name>Java.net Repository for Maven</name>
109                        <url>http://download.java.net/maven/2/</url>
110                        <layout>default</layout>
111                </repository>
112                <repository>
113                        <id>itextpdf.com</id>
114                        <name>Maven Repository for iText</name>
115                        <url>http://maven.itextpdf.com/</url>
116                </repository>
117        </repositories>
118        <dependencies>
119                <dependency>
120                        <groupId>org.seleniumhq.selenium</groupId>
121                        <artifactId>selenium</artifactId>
122                        <version>2.0b3</version>
123                        <type>pom</type>
124                        <scope>compile</scope>
125                </dependency>
126                <dependency>
127                        <groupId>org.testng</groupId>
128                        <artifactId>testng</artifactId>
129                        <version>6.0.1</version>
130                        <type>jar</type>
131                        <scope>compile</scope>
132                </dependency>
133                <dependency>
134                        <groupId>org.uncommons</groupId>
135                        <artifactId>reportng</artifactId>
136                        <version>1.1.2</version>
137                        <scope>compile</scope>
138                        <exclusions>
139                                <exclusion>
140                                        <groupId>org.testng</groupId>
141                                        <artifactId>testng</artifactId>
142                                </exclusion>
143                        </exclusions>
144                </dependency>
145                <dependency>
146                        <groupId>net.htmlparser.jericho</groupId>
147                        <artifactId>jericho-html</artifactId>
148                        <version>3.1</version>
149                        <type>jar</type>
150                        <scope>compile</scope>
151                </dependency>
152                <dependency>
153                        <groupId>org.aspectj</groupId>
154                        <artifactId>aspectjweaver</artifactId>
155                        <version>1.6.10</version>
156                        <type>jar</type>
157                        <scope>compile</scope>
158                </dependency>
159                <dependency>
160                        <groupId>com.itextpdf</groupId>
161                        <artifactId>itextpdf</artifactId>
162                        <version>5.0.6</version>
163                        <scope>compile</scope>
164                </dependency>
165                <dependency>
166                        <groupId>org.xhtmlrenderer</groupId>
167                        <artifactId>core-renderer</artifactId>
168                        <version>R8</version>
169                        <type>jar</type>
170                        <scope>compile</scope>
171                </dependency>
172                <dependency>
173                        <groupId>org.aspectj</groupId>
174                        <artifactId>aspectjtools</artifactId>
175                        <version>1.6.10</version>
176                        <type>jar</type>
177                        <scope>compile</scope>
178                </dependency>
179                <dependency>
180                        <groupId>org.aspectj</groupId>
181                        <artifactId>aspectjrt</artifactId>
182                        <version>1.6.10</version>
183                        <type>jar</type>
184                        <scope>compile</scope>
185                </dependency>
186        </dependencies>
187
188</project>
Note: See TracBrowser for help on using the repository browser.