Quick Search:

View

Revision:

Diff

Diff from 1020 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/jdave/trunk/jdave-wicket-selenium/pom.xml

Annotated File View

janneh
733
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
4   <parent>
5     <groupId>org.jdave</groupId>
6     <artifactId>jdave-parent</artifactId>
inhuman
995
7     <version>1.1-SNAPSHOT</version>
janneh
733
8     <relativePath>../jdave-parent</relativePath>
9   </parent>
10
11   <artifactId>jdave-wicket-selenium</artifactId>
12   <name>jdave-wicket-selenium</name>
13   <packaging>jar</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>jdave-core</artifactId>
19       <version>${project.version}</version>
20     </dependency>
21     <dependency>
22       <groupId>org.apache.wicket</groupId>
23       <artifactId>wicket</artifactId>
thrantal
1020
24       <version>1.3.3</version>
janneh
733
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>jdave-junit4</artifactId>
29       <version>${project.version}</version>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>javax.servlet</groupId>
34       <artifactId>servlet-api</artifactId>
35       <version>2.4</version>
36       <type>jar</type>
37       <scope>provided</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.slf4j</groupId>
thrantal
1020
41       <artifactId>slf4j-api</artifactId>
42       <version>1.4.2</version>
43     </dependency>
44     <dependency>
45       <groupId>org.slf4j</groupId>
janneh
733
46       <artifactId>slf4j-log4j12</artifactId>
thrantal
1020
47       <version>1.4.2</version>
48     </dependency>
49     <dependency>
50       <groupId>log4j</groupId>
51       <artifactId>log4j</artifactId>
52       <version>1.2.13</version>
53       <optional>true</optional>
janneh
733
54     </dependency>
55     <dependency>
56       <groupId>org.openqa.selenium.client-drivers</groupId>
57       <artifactId>selenium-java-client-driver</artifactId>
janneh
1019
58       <version>1.0-SNAPSHOT</version>
janneh
733
59     </dependency>
60     <dependency>
61       <groupId>org.openqa.selenium.server</groupId>
62       <artifactId>selenium-server</artifactId>
janneh
1019
63       <version>1.0-SNAPSHOT</version>
janneh
733
64     </dependency>
65     <dependency>
66       <groupId>org.apache.tomcat</groupId>
67       <artifactId>jasper</artifactId>
68       <version>6.0.13</version>
69     </dependency>
70   </dependencies>
71
72
73   <build>
74     <sourceDirectory>src/java</sourceDirectory>
75     <resources>
76       <resource>
77         <directory>src/java</directory>
78       </resource>
79     </resources>
80     <testResources>
81       <testResource>
82         <directory>src/test</directory>
83       </testResource>
84     </testResources>
85
86     <plugins>
87       <plugin>
88         <artifactId>maven-surefire-plugin</artifactId>
89         <configuration>
90           <includes>
91             <include>**/*Spec.java</include>
92           </includes>
93         </configuration>
94       </plugin>
95     </plugins>
96   </build>
97
janneh
1019
98     <repositories>
99      <repository>
100        <id>openqa</id>
101        <url>http://archiva.openqa.org/repository/snapshots/</url>
102      </repository>
103     </repositories>
104
janneh
733
105 </project>