source: devel/testlink/automation/pom.xml @ 3521

Revision 3521, 1.7 KB checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Automacao dos casos de teste do Expresso documentados no Testlink

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
5  <groupId>br.gov.serpro.cte</groupId>
6  <artifactId>ExpressoAutomation</artifactId>
7  <version>1.0-SNAPSHOT</version>
8        <build>
9                <plugins>
10                       
11                        <plugin>
12                                <groupId>org.apache.maven.plugins</groupId>
13                                <artifactId>maven-compiler-plugin</artifactId>
14                                <version>2.3.2</version>
15                                <configuration>
16                                        <compilerVersion>1.5</compilerVersion>
17                                </configuration>
18                        </plugin>
19
20                </plugins>
21        </build>
22
23  <name>ExpressoAutomation</name>
24  <url>http://maven.apache.org</url>
25
26  <properties>
27    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28  </properties>
29
30        <repositories>
31                <repository>
32                        <id>openqa</id>
33                        <name>OpenQA Repository</name>
34                        <url>http://nexus.openqa.org/content/repositories/releases</url>
35                        <snapshots>
36                                <enabled>true</enabled>
37                        </snapshots>
38                        <releases>
39                                <enabled>true</enabled>
40                        </releases>
41                </repository>
42
43        </repositories>
44        <dependencies>
45                <dependency>
46                        <groupId>junit</groupId>
47                        <artifactId>junit</artifactId>
48                        <version>4.1</version>
49                </dependency>
50                <dependency>
51                        <groupId>commons-lang</groupId>
52                        <artifactId>commons-lang</artifactId>
53                        <version>2.5</version>
54                </dependency>
55                <dependency>
56                        <groupId>org.openqa.selenium.client-drivers</groupId>
57                        <artifactId>selenium-java-client-driver</artifactId>
58                        <version>1.0-beta-1</version>
59                        <scope>test</scope>
60                </dependency>
61                <dependency>
62                        <groupId>org.jbehave</groupId>
63                        <artifactId>jbehave-maven-plugin</artifactId>
64                        <version>2.3</version>
65                </dependency>
66
67        </dependencies>
68</project>
Note: See TracBrowser for help on using the repository browser.