This repository has been archived by the owner on Oct 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
130 lines (117 loc) · 4.14 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<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.dspace</groupId>
<artifactId>dspace-rest</artifactId>
<packaging>war</packaging>
<name>DSpace REST API</name>
<url>http://projects.dspace.org</url>
<description>The REST API for DSpace using the Sakai EntityBus</description>
<parent>
<artifactId>dspace-parent</artifactId>
<groupId>org.dspace</groupId>
<version>1.8.0-SNAPSHOT</version>
</parent>
<scm>
<connection>scm:svn:http://scm.dspace.org/svn/repo/modules/dspace-rest/trunk</connection>
<developerConnection>scm:svn:https://scm.dspace.org/svn/repo/modules/dspace-rest/trunk</developerConnection>
<url>http://scm.dspace.org/svn/repo/modules/dspace-rest/trunk</url>
</scm>
<repositories>
<repository>
<id>sakaiproject repository</id>
<name>sakai rep</name>
<url>http://source.sakaiproject.org/maven2/</url>
<layout>default</layout>
</repository>
</repositories>
<profiles>
<!--
when activated a dspace.config configuration
file location passed on the commandline
(-Ddspace.config=...) can be passed through
to be used as a filter source by projects for
tasks such as updating the ${dspace.dir} in
web.xml etc.
-->
<profile>
<id>config</id>
<activation>
<property>
<name>dspace.config</name>
</property>
</activation>
<build>
<filters>
<filter>${dspace.config}</filter>
</filters>
</build>
</profile>
<profile>
<id>oracle-support</id>
<activation>
<property>
<name>db.name</name>
<value>oracle</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>postgres-support</id>
<activation>
<property>
<name>!db.name</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.dspace</groupId>
<artifactId>dspace-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.sakaiproject.entitybus</groupId>
<artifactId>entitybus-api</artifactId>
<scope>compile</scope>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>org.sakaiproject.entitybus</groupId>
<artifactId>entitybus-impl</artifactId>
<scope>compile</scope>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>org.sakaiproject.entitybus</groupId>
<artifactId>entitybus-rest</artifactId>
<scope>compile</scope>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>org.sakaiproject.entitybus</groupId>
<artifactId>entitybus-utils</artifactId>
<scope>compile</scope>
<version>1.0.8</version>
</dependency>
</dependencies>
<properties>
<netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server>
</properties>
</project>