forked from Weltraumschaf/cacert-frontendtests
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
111 lines (98 loc) · 3.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.cacert</groupId>
<artifactId>cacert-frontendtests</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<name>CAcert Frontent Testsuite</name>
<description>...</description>
<organization>
<name>CAcert</name>
<url>http://www.cacert.org</url>
</organization>
<developers>
<developer>
<id>Weltraumschaf</id>
<name>Sven Strittmatter</name>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>The Beer Ware License (Revision 42)</name>
<url>http://www.weltraumschaf.de/the-beer-ware-license.txt</url>
<distribution>repo</distribution>
<comments>
"THE BEER-WARE LICENSE" (Revision 42):
"Sven Strittmatter" <ich(at)weltraumschaf(dot)de> wrote this file.
As long as you retain this notice you can do whatever you want with
this stuff. If we meet some day, and you think this stuff is worth it,
you can buy me a beer in return.
</comments>
</license>
</licenses>
<issueManagement>
<system>Mantis</system>
<url>https://bugs.cacert.org/</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/Weltraumschaf/cacert-frontendtests.git</connection>
<developerConnection>scm:git:[email protected]:Weltraumschaf/cacert-frontendtests.git</developerConnection>
<url>https://github.com/Weltraumschaf/cacert-frontendtests/</url>
</scm>
<properties>
<!-- http://docs.codehaus.org/display/MAVENUSER/POM+Element+for+Source+File+Encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compileTarget>1.6</compileTarget>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>2.9.0</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<directory>${project.basedir}/target</directory>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<finalName>${project.artifactId}-${project.version}</finalName>
<testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
</testResource>
</testResources>
</build>
</project>