|
| 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