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

Revision 3663, 1.8 KB checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Nova versão dos casos de testes, agora implementados com WebDriver? (Selenium 2.0)

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.jbehave</groupId>
21                                <artifactId>jbehave-maven-plugin</artifactId>
22                                <version>3.1</version>
23                        </plugin>
24
25
26                </plugins>
27        </build>
28        <name>ExpressoAutomation2</name>
29        <url>http://maven.apache.org</url>
30
31        <properties>
32                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33        </properties>
34
35        <dependencies>
36               
37                <dependency>
38                  <groupId>org.testng</groupId>
39                  <artifactId>testng</artifactId>
40                  <version>5.14.1</version>
41                  <scope>test</scope>
42                </dependency>
43
44                        <dependency>
45                        <groupId>org.seleniumhq.selenium</groupId>
46                        <artifactId>selenium</artifactId>
47                        <version>2.0b1</version>
48                </dependency>
49
50<!--
51<dependency>
52    <groupId>org.jbehave.web</groupId>
53    <artifactId>jbehave-web-distribution</artifactId>
54    <version>3.1.1</version>
55</dependency>                           
56
57
58<dependency>
59    <groupId>org.jbehave</groupId>
60    <artifactId>jbehave-distribution</artifactId>
61    <version>3.1.1</version>
62</dependency>
63 
64<dependency>
65    <groupId>org.mockito</groupId>
66    <artifactId>mockito-all</artifactId>
67    <version>1.8.5</version>
68</dependency>
69                                 
70
71                <dependency>
72        <groupId>org.jbehave</groupId>
73    <artifactId>jbehave</artifactId>
74                <version>3.1.1</version>
75</dependency>
76         -->   
77        </dependencies>
78
79</project>
Note: See TracBrowser for help on using the repository browser.