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

Revision 5025, 6.1 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                                    <!--
55                                        <suiteXmlFiles>
56                                                <suiteXmlFile>SetupEmailPreferences.xml</suiteXmlFile>
57                                                <suiteXmlFile>[FUN02.1] - ComporMensagem.xml</suiteXmlFile>
58                                                <suiteXmlFile>[FUN02.2] - LerMensagem.xml</suiteXmlFile>
59                                                <suiteXmlFile>[FUN02.3] - ListarMensagem.xml</suiteXmlFile>
60                                                <suiteXmlFile>[FUN02.5] - ResponderMensagem.xml</suiteXmlFile>
61                                                <suiteXmlFile>[FUN02.6] - GerenciarPastas.xml</suiteXmlFile>
62                                                <suiteXmlFile>[FUN02.8] - PesquisarMensagem.xml</suiteXmlFile>
63                                                <suiteXmlFile>[FUN02.7] - GerenciarFiltros.xml</suiteXmlFile>
64                                        </suiteXmlFiles>
65                                         -->
66                                         
67                                        <suiteXmlFiles>
68                                                <suiteXmlFile>[FUN03.1] - FiltrarCompromisso.xml</suiteXmlFile>
69                                                <suiteXmlFile>[FUN03.2] - AdicionarCompromisso.xml</suiteXmlFile>
70                                                <suiteXmlFile>[FUN03.3] - PesquisarCompromisso.xml</suiteXmlFile>
71                                                <suiteXmlFile>[FUN03.6] - VisualizarCompromisso.xml</suiteXmlFile>
72                                                <!-- suiteXmlFile>[FUN03.7] - CompartilharAgenda.xml</suiteXmlFile-->
73                                                <suiteXmlFile>[FUN03.8] - PreferenciaAgenda.xml</suiteXmlFile>
74                                        </suiteXmlFiles>
75                                       
76                                        <testFailureIgnore>true</testFailureIgnore>
77                                </configuration>
78                        </plugin>
79                        <!--
80                        <plugin>
81                                <groupId>org.codehaus.mojo</groupId>
82                                <artifactId>aspectj-maven-plugin</artifactId>
83                                <version>1.3.1</version>
84                                <configuration>
85                                        <complianceLevel>1.6</complianceLevel>
86                                </configuration>
87                                <executions>
88                                        <execution>
89                                                <goals>
90                                                        <goal>compile</goal>
91                                                        <goal>test-compile</goal>
92                                                </goals>
93                                        </execution>
94                                </executions>
95                        </plugin>
96                         -->
97                        <plugin>
98                    <groupId>org.apache.maven.plugins</groupId>
99                    <artifactId>maven-surefire-plugin</artifactId>
100                    <version>2.5</version>
101                    <configuration>
102                        <properties>
103                            <property>
104                                <name>usedefaultlisteners</name>
105                                <value>false</value>
106                            </property>
107                            <property>
108                                <name>listener</name>
109                                <value>org.uncommons.reportng.HTMLReporter, org.uncommons.reportng.JUnitXMLReporter</value>
110                            </property>
111                        </properties>
112                        <workingDirectory>target/</workingDirectory>
113                    </configuration>
114                </plugin>                       
115                </plugins>
116        </build>
117
118        <repositories>
119                <repository>
120                        <id>maven2-repository.java.net</id>
121                        <name>Java.net Repository for Maven</name>
122                        <url>http://download.java.net/maven/2/</url>
123                        <layout>default</layout>
124                </repository>
125                <repository>
126                        <id>itextpdf.com</id>
127                        <name>Maven Repository for iText</name>
128                        <url>http://maven.itextpdf.com/</url>
129                </repository>
130        </repositories>
131        <dependencies>
132                <dependency>
133                        <groupId>org.seleniumhq.selenium</groupId>
134                        <artifactId>selenium</artifactId>
135                        <version>2.0b3</version>
136                        <type>pom</type>
137                        <scope>compile</scope>
138                </dependency>
139                <dependency>
140                        <groupId>org.testng</groupId>
141                        <artifactId>testng</artifactId>
142                        <version>6.0.1</version>
143                        <type>jar</type>
144                        <scope>compile</scope>
145                </dependency>
146                <dependency>
147                        <groupId>org.uncommons</groupId>
148                        <artifactId>reportng</artifactId>
149                        <version>1.1.2</version>
150                        <scope>compile</scope>
151                        <exclusions>
152                                <exclusion>
153                                        <groupId>org.testng</groupId>
154                                        <artifactId>testng</artifactId>
155                                </exclusion>
156                        </exclusions>
157                </dependency>
158                <dependency>
159                        <groupId>net.htmlparser.jericho</groupId>
160                        <artifactId>jericho-html</artifactId>
161                        <version>3.1</version>
162                        <type>jar</type>
163                        <scope>compile</scope>
164                </dependency>
165                <dependency>
166                        <groupId>org.aspectj</groupId>
167                        <artifactId>aspectjweaver</artifactId>
168                        <version>1.6.10</version>
169                        <type>jar</type>
170                        <scope>compile</scope>
171                </dependency>
172                <dependency>
173                        <groupId>com.itextpdf</groupId>
174                        <artifactId>itextpdf</artifactId>
175                        <version>5.0.6</version>
176                        <scope>compile</scope>
177                </dependency>
178                <dependency>
179                        <groupId>org.xhtmlrenderer</groupId>
180                        <artifactId>core-renderer</artifactId>
181                        <version>R8</version>
182                        <type>jar</type>
183                        <scope>compile</scope>
184                </dependency>
185                <dependency>
186                        <groupId>org.aspectj</groupId>
187                        <artifactId>aspectjtools</artifactId>
188                        <version>1.6.10</version>
189                        <type>jar</type>
190                        <scope>compile</scope>
191                </dependency>
192                <dependency>
193                        <groupId>org.aspectj</groupId>
194                        <artifactId>aspectjrt</artifactId>
195                        <version>1.6.10</version>
196                        <type>jar</type>
197                        <scope>compile</scope>
198                </dependency>
199        </dependencies>
200
201</project>
Note: See TracBrowser for help on using the repository browser.