-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
53 lines (53 loc) · 2.06 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
<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>rafaelspinto</groupId>
<artifactId>challenges</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Challenges</name>
<properties>
<flow.version>1.0-SNAPSHOT</flow.version>
<junit.version>4.12</junit.version>
<junit-dataprovider.version>1.10.0</junit-dataprovider.version>
<mockito-all.version>1.10.19</mockito-all.version>
<cucumber-java.version>1.2.5</cucumber-java.version>
<cucumber-junit.version>1.2.5</cucumber-junit.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito-all.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.tngtech.java</groupId>
<artifactId>junit-dataprovider</artifactId>
<version>${junit-dataprovider.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>${cucumber-junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>${cucumber-java.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rafaelspinto</groupId>
<artifactId>flow</artifactId>
<version>${flow.version}</version>
</dependency>
</dependencies>
</project>