-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
95 lines (93 loc) · 3.4 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2011-2020 BITPlan GmbH Pater-Delp-Str. 1 D-47877 Willich-Schiefbahn
http://www.bitplan.com install maven 2 to use this pom file run e.g. mvn
dependency:go-offline to download all libraries add M2_REPO variable pointing
to $HOME/.m2/repository to your Eclipse settings Install m2eclipse plugin
for convenience http://download.eclipse.org/technology/m2e/releases/ -->
<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>
<name>REST JPA Persistence</name>
<artifactId>com.bitplan.storage.sql</artifactId>
<parent>
<groupId>com.bitplan.rest</groupId>
<artifactId>com.bitplan.rest</artifactId>
<version>0.0.6</version>
<relativePath>../com.bitplan.rest/pom.xml</relativePath>
</parent>
<repositories>
<repository>
<id>eclipselink</id>
<url>http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo/
</url>
</repository>
</repositories>
<dependencies>
<!-- Resthelper -->
<dependency>
<artifactId>com.bitplan.resthelper</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<!-- RestHelper Interface -->
<dependency>
<artifactId>com.bitplan.resthelper-api</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<!-- and tests for the RestHelper Interface -->
<dependency>
<artifactId>com.bitplan.resthelper-api</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- Rest JqGrid -->
<dependency>
<artifactId>com.bitplan.rest.jqgrid</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
<!-- Eclipse Link persistence -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<!-- <version>2.4.2-RC1</version> -->
<!-- <version>2.5.1-RC3</version> -->
<!-- <version>2.5.1</version> -->
<!-- <version>2.5.2-M1</version> -->
<!-- <version>2.5.2</version> -->
<version>2.6.0-M3</version>
<exclusions>
<exclusion>
<artifactId>commonj.sdo</artifactId>
<groupId>commonj.sdo</groupId>
</exclusion>
</exclusions>
</dependency>
<!--
http://dev.eclipse.org/mhonarc/lists/eclipselink-users/msg08372.html
http://mvnrepository.com/artifact/javax.validation/validation-api/1.1.0.Final
-->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
</dependency>
<!-- <exclusions> <exclusion> <groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId> </exclusion> </exclusions> -->
<!-- <scope>provided</scope> since I'm running inside a Java EE container -->
<!-- <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId>
<version>1.0</version> <scope>provided</scope> </dependency> -->
<!-- mySQL Connector -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.47</version>
</dependency>
</dependencies>
<build>
</build>
</project>