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

Revision 3853, 2.1 KB checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Novos casos de teste implementados usando WebDriver?

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        <version>0.0.1-SNAPSHOT</version>
7        <build>
8                <plugins>
9
10                        <plugin>
11                                <groupId>org.apache.maven.plugins</groupId>
12                                <artifactId>maven-compiler-plugin</artifactId>
13                                <version>2.3.2</version>
14                                <configuration>
15                                        <compilerVersion>1.6</compilerVersion>
16                                </configuration>
17                        </plugin>
18
19                          <plugin>
20                            <groupId>org.apache.maven.plugins</groupId>
21                            <artifactId>maven-surefire-plugin</artifactId>
22                            <configuration>
23                              <suiteXmlFiles>
24                                <suiteXmlFile>[FUN02.1] - ComporMensagem.xml</suiteXmlFile>
25                              </suiteXmlFiles>
26                            </configuration>
27                          </plugin>
28
29<!--
30                        <plugin>
31                                <groupId>org.jbehave</groupId>
32                                <artifactId>jbehave-maven-plugin</artifactId>
33                                <version>3.1</version>
34                        </plugin>
35 -->
36
37                </plugins>
38        </build>
39        <name>ExpressoAutomation2</name>
40        <url>http://maven.apache.org</url>
41
42        <properties>
43                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44        </properties>
45
46        <dependencies>
47               
48                <dependency>
49                  <groupId>org.testng</groupId>
50                  <artifactId>testng</artifactId>
51                  <version>5.14.3</version>
52                  <scope>test</scope>
53                </dependency>
54
55                        <dependency>
56                        <groupId>org.seleniumhq.selenium</groupId>
57                        <artifactId>selenium</artifactId>
58                        <version>2.0b1</version>
59                </dependency>
60
61<!--
62<dependency>
63    <groupId>org.jbehave.web</groupId>
64    <artifactId>jbehave-web-distribution</artifactId>
65    <version>3.1.1</version>
66</dependency>                           
67
68
69<dependency>
70    <groupId>org.jbehave</groupId>
71    <artifactId>jbehave-distribution</artifactId>
72    <version>3.1.1</version>
73</dependency>
74 
75<dependency>
76    <groupId>org.mockito</groupId>
77    <artifactId>mockito-all</artifactId>
78    <version>1.8.5</version>
79</dependency>
80                                 
81
82                <dependency>
83        <groupId>org.jbehave</groupId>
84    <artifactId>jbehave</artifactId>
85                <version>3.1.1</version>
86</dependency>
87         -->   
88        </dependencies>
89
90</project>
Note: See TracBrowser for help on using the repository browser.