source: devel/testlink/calendar/FUN03.2/pom.xml @ 3513

Revision 3513, 1.5 KB checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Automacao dos casos de teste do modulo ExpressoMail? documentados no Testlink

Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2  <modelVersion>4.0.0</modelVersion>
3  <groupId>ExpressoCteAgenda</groupId>
4  <artifactId>FUN03.2</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6        <build>
7                <plugins>
8                       
9                        <plugin>
10                                <groupId>org.apache.maven.plugins</groupId>
11                                <artifactId>maven-compiler-plugin</artifactId>
12                                <version>2.3.2</version>
13                                <configuration>
14                                        <compilerVersion>1.5</compilerVersion>
15                                </configuration>
16                        </plugin>
17
18                </plugins>
19        </build>
20
21        <repositories>
22                <repository>
23                        <id>openqa</id>
24                        <name>OpenQA Repository</name>
25                        <url>http://nexus.openqa.org/content/repositories/releases</url>
26                        <snapshots>
27                                <enabled>true</enabled>
28                        </snapshots>
29                        <releases>
30                                <enabled>true</enabled>
31                        </releases>
32                </repository>
33
34        </repositories>
35        <dependencies>
36                <dependency>
37                        <groupId>junit</groupId>
38                        <artifactId>junit</artifactId>
39                        <version>4.1</version>
40                </dependency>
41                <dependency>
42                        <groupId>commons-lang</groupId>
43                        <artifactId>commons-lang</artifactId>
44                        <version>2.5</version>
45                </dependency>
46                <dependency>
47                        <groupId>org.openqa.selenium.client-drivers</groupId>
48                        <artifactId>selenium-java-client-driver</artifactId>
49                        <version>1.0-beta-1</version>
50                        <scope>test</scope>
51                </dependency>
52                <dependency>
53                        <groupId>org.jbehave</groupId>
54                        <artifactId>jbehave-maven-plugin</artifactId>
55                        <version>2.3</version>
56                </dependency>
57
58        </dependencies>
59</project>
Note: See TracBrowser for help on using the repository browser.