summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2013-06-24 11:55:45 +0200
committerAndrew Branson <andrew.branson@cern.ch>2013-06-24 11:55:45 +0200
commit37f851c582030d3b2983f1ec84593d55d04904d8 (patch)
tree8dd480ec0f81459cb1114aa43505dc89461d4ff8
parent40d17bc24039e4cdcdd9e24531def09dcac182ff (diff)
Fetch eXist from maven repo on github.
Exclude everything we don't need for XMLDB:API use. May need to de-exclude for use with XQuery
-rw-r--r--pom.xml54
1 files changed, 52 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index a685cd0..5c6f750 100644
--- a/pom.xml
+++ b/pom.xml
@@ -92,6 +92,10 @@
<name>CCCS Nexus Public Repository</name>
<url>http://dev.cccs.uwe.ac.uk:8081/nexus/content/repositories/public</url>
</repository>
+ <repository>
+ <id>eXistDB</id>
+ <url>https://raw.github.com/eXist-db/mvn-repo/master/</url>
+ </repository>
</repositories>
<dependencyManagement>
<dependencies>
@@ -109,8 +113,54 @@
</dependency>
<dependency>
<groupId>org.exist-db</groupId>
- <artifactId>exist</artifactId>
- <version>1.4.3</version>
+ <artifactId>existdb-core</artifactId>
+ <version>2.0</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>commons-codec</artifactId>
+ <groupId>commons-codec</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>commons-io</artifactId>
+ <groupId>commons-io</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>commons-pool</artifactId>
+ <groupId>commons-pool</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>jing</artifactId>
+ <groupId>com.thaiopensource</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>Saxon-HE</artifactId>
+ <groupId>net.sf.saxon</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>antlr</artifactId>
+ <groupId>antlr</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>gnu-crypto</artifactId>
+ <groupId>gnu-crypto</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>xmlrpc-server</artifactId>
+ <groupId>org.apache.xmlrpc</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>excalibur-cli</artifactId>
+ <groupId>excalibur-cli</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>pkg-repo</artifactId>
+ <groupId>org.expath</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>quartz</artifactId>
+ <groupId>org.quartz-scheduler</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
</project> \ No newline at end of file