This repository has been archived by the owner on Nov 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
111 lines (100 loc) · 3.61 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
<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>
<parent>
<groupId>org.testatoo</groupId>
<artifactId>testatoo</artifactId>
<version>4</version>
</parent>
<groupId>org.testatoo.cartridge</groupId>
<artifactId>testatoo-extjs3</artifactId>
<version>1.0-rc1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>testatoo-extjs3</name>
<description>Testatoo Extjs3 Cartridge</description>
<scm>
<connection>scm:git:[email protected]:Ovea/${project.name}.git</connection>
<developerConnection>scm:git:[email protected]:Ovea/${project.name}.git</developerConnection>
<url>http://github.com/Ovea/${project.name}</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx512m</argLine>
<argLine>-XX:MaxPermSize=128M</argLine>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/test/webapp/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx512m</argLine>
<argLine>-XX:MaxPermSize=128M</argLine>
<argLine>-DCI=true</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.testatoo</groupId>
<artifactId>testatoo-core</artifactId>
<version>1.0-rc2</version>
</dependency>
<dependency>
<groupId>org.testatoo.openqa</groupId>
<artifactId>selenium-java-client-driver</artifactId>
<version>1.0.2_20090715</version>
</dependency>
<!-- testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testatoo</groupId>
<artifactId>testatoo-config</artifactId>
<version>1.0-rc2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testatoo</groupId>
<artifactId>testatoo-selenium</artifactId>
<version>1.0-rc2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testatoo.container</groupId>
<artifactId>testatoo-container-jetty</artifactId>
<version>1.0-rc5</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>