forked from qa/arquillian-phantom-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
89 lines (79 loc) · 3.21 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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Parent -->
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>10</version>
<relativePath />
</parent>
<groupId>org.jboss.arquillian.extension</groupId>
<artifactId>arquillian-phantom-driver</artifactId>
<version>1.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Arquillian Phantom Driver</name>
<description>
Arquillian Phantom Driver provides dependency on the GhostDriver, dependency on PhantomJS binary
and provides runtime resolution of the binary artifact to enable true headless unattended testing.
</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Jan Papousek</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<!-- versions -->
<selenium.version>2.35.0</selenium.version>
<phantomjs.driver.version>1.0.4</phantomjs.driver.version>
<junit.version>4.11</junit.version>
<shrinkwrap.resolver.version>2.0.0</shrinkwrap.resolver.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.detro.ghostdriver</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>${phantomjs.driver.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-depchain</artifactId>
<type>pom</type>
<version>${shrinkwrap.resolver.version}</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<!-- Use a local checkout instead of doing a checkout from the upstream repository -->
<localCheckout>true</localCheckout>
<!-- Will not push changes to the upstream repository -->
<pushChanges>false</pushChanges>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:git:git://github.com/qa/arquillian-phantom-driver.git</connection>
<developerConnection>scm:git:[email protected]:qa/arquillian-phantom-driver.git</developerConnection>
<url>https://github.com/qa/arquillian-phantom-driver</url>
<tag>HEAD</tag>
</scm>
</project>