-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
78 lines (72 loc) · 2.43 KB
/
pom.xml
File metadata and controls
78 lines (72 loc) · 2.43 KB
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
<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>
<groupId>it.snova</groupId>
<artifactId>phapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Project Handler</name>
<properties>
<jpa.version>1.1</jpa.version>
<log4j.version>1.2.16</log4j.version>
<datanucleus.version>3.1.1</datanucleus.version>
<jdo.version>3.0</jdo.version>
<junit.version>4.10</junit.version>
<primefaces.version>3.3.1</primefaces.version>
<metrics.version>2.1.2</metrics.version>
<commons-lang.version>2.1</commons-lang.version>
<commons-io.version>1.4</commons-io.version>
<ehcache-core.version>2.6.5</ehcache-core.version>
<google-guice.version>3.0</google-guice.version>
<jersey.version>1.15</jersey.version>
<httpclient.version>4.1.3</httpclient.version>
<slf4j.version>1.6.0</slf4j.version>
<jetty.version>8.1.9.v20130131</jetty.version>
</properties>
<build>
<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>
</build>
<modules>
<module>modules/appframework</module>
<module>modules/dbschema</module>
<module>modules/appinstall</module>
<module>modules/restapi</module>
<module>modules/webgui</module>
<module>modules/testjpa</module>
</modules>
<repositories>
<repository>
<id>DN_M2_Repo</id>
<name>DataNucleus Repository</name>
<url>http://www.datanucleus.org/downloads/maven2</url>
</repository>
<repository>
<id>JAVA</id>
<name>Maven Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>central</id>
<name>Central Maven repository</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
<!-- Required for transaction-api transitive dep -->
<!--
<repository>
<id>Java_Net_LEGACY</id>
<name>Java.Net legacy</name>
<url>http://download.java.net/maven/1/</url>
<layout>legacy</layout>
</repository
-->
</repositories>
</project>