-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·100 lines (96 loc) · 3.72 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
<?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.sgo.projectx</groupId>
<artifactId>projectx</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>Project X</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<surefire.version>2.16</surefire.version>
<failsafe.version>2.16</failsafe.version>
<org.springframework.version>4.0.0.BUILD-SNAPSHOT</org.springframework.version>
<org.hibernate.version>3.6.7.Final</org.hibernate.version>
<slf4j.version>1.7.5</slf4j.version>
<jackson.version>1.9.1</jackson.version>
<h2.version>1.2.124</h2.version>
<testng.version>6.2</testng.version>
<httpclient.version>4.1.2</httpclient.version>
<jodatime.version>1.6.2</jodatime.version>
<aspectj.version>1.7.3</aspectj.version>
<junit.version>4.11</junit.version>
<cucumber.version>1.1.3</cucumber.version>
</properties>
<repositories>
<repository>
<id>com.springsource.repository.maven.snapshot</id>
<url>http://maven.springframework.org/snapshot/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!--<repository>-->
<!--<id>maven-centrral</id>-->
<!--<url>http://repo1.maven.org/maven2/</url>-->
<!--</repository>-->
<repository>
<id>opencast-public</id>
<url>http://repository.opencastproject.org/nexus/content/repositories/public/</url>
</repository>
<repository>
<id>repo.codahale.com</id>
<url>http://repo.codahale.com</url>
</repository>
<repository>
<id>sonatype releases</id>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
<repository>
<id>sonatype snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
<modules>
<module>model</module>
<module>persistence</module>
<module>services</module>
<module>webapp</module>
<!--<module>persistence-mongo</module>-->
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<groups>unit</groups>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${failsafe.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>