Skip to content

Commit 67d3d9d

Browse files
Prasanna SanthanamAlex Huang
authored andcommitted
Poms for the test directory.
- test depends on selenium-java - added artifact as dependency in test/pom.xml
1 parent 2dd45a5 commit 67d3d9d

2 files changed

Lines changed: 86 additions & 0 deletions

File tree

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
<cs.neethi.version>2.0.4</cs.neethi.version>
8080
<cs.servlet.version>2.4</cs.servlet.version>
8181
<cs.jstl.version>1.2</cs.jstl.version>
82+
<cs.selenium.java.version>2.24.1</cs.selenium.java.version>
8283

8384
<skipTests>true</skipTests>
8485

test/pom.xml

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<!--
2+
Licensed to the Apache Software Foundation (ASF) under one
3+
or more contributor license agreements. See the NOTICE file
4+
distributed with this work for additional information
5+
regarding copyright ownership. The ASF licenses this file
6+
to you under the Apache License, Version 2.0 (the
7+
"License"); you may not use this file except in compliance
8+
with the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing,
13+
software distributed under the License is distributed on an
14+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
KIND, either express or implied. See the License for the
16+
specific language governing permissions and limitations
17+
under the License.
18+
-->
19+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21+
<modelVersion>4.0.0</modelVersion>
22+
<artifactId>cloud-test</artifactId>
23+
<name>Apache CloudStack Test</name>
24+
<parent>
25+
<groupId>org.apache.cloudstack</groupId>
26+
<artifactId>cloudstack</artifactId>
27+
<version>4.0.0-SNAPSHOT</version>
28+
</parent>
29+
<dependencies>
30+
<dependency>
31+
<groupId>log4j</groupId>
32+
<artifactId>log4j</artifactId>
33+
<version>${cs.log4j.version}</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>junit</groupId>
37+
<artifactId>org.junit</artifactId>
38+
<version>${cs.junit.version}</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.trilead</groupId>
42+
<artifactId>trilead-ssh2</artifactId>
43+
<version>${cs.trilead.version}</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>log4j</groupId>
47+
<artifactId>apache-log4j-extras</artifactId>
48+
<version>${cs.log4j.extras.version}</version>
49+
<exclusions>
50+
<exclusion>
51+
<artifactId>log4j</artifactId>
52+
<groupId>log4j</groupId>
53+
</exclusion>
54+
</exclusions>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.seleniumhq.selenium</groupId>
58+
<artifactId>selenium-java</artifactId>
59+
<version>${cs.selenium.java.version}</version>
60+
</dependency>
61+
</dependencies>
62+
<build>
63+
<defaultGoal>install</defaultGoal>
64+
<sourceDirectory>src</sourceDirectory>
65+
<testSourceDirectory>test</testSourceDirectory>
66+
<plugins>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-jar-plugin</artifactId>
70+
<executions>
71+
<execution>
72+
<goals>
73+
<goal>test-jar</goal>
74+
</goals>
75+
</execution>
76+
</executions>
77+
</plugin>
78+
</plugins>
79+
<resources>
80+
<resource>
81+
<directory>certs</directory>
82+
</resource>
83+
</resources>
84+
</build>
85+
</project>

0 commit comments

Comments
 (0)