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

Revision 5109, 6.2 KB checked in by luiz-fernando, 13 years ago (diff)

Ticket #1771 - Refactoring, criadas novas classes para Pasta, Filtro, Pesquisa

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