Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 38888de

Browse files
committed
Added pom file
1 parent 99dd590 commit 38888de

File tree

2 files changed

+81
-0
lines changed

2 files changed

+81
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@
1010
out
1111
*.ipr
1212
*.iws
13+
target
14+

pom.xml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>com.marklogic</groupId>
7+
<artifactId>ml-javaclient-util</artifactId>
8+
<version>3.6.0</version>
9+
10+
<properties>
11+
<maven.compiler.source>1.8</maven.compiler.source>
12+
<maven.compiler.target>1.8</maven.compiler.target>
13+
</properties>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.marklogic</groupId>
18+
<artifactId>marklogic-client-api</artifactId>
19+
<version>4.0.3.1</version>
20+
<scope>compile</scope>
21+
</dependency>
22+
<dependency>
23+
<groupId>com.marklogic</groupId>
24+
<artifactId>marklogic-xcc</artifactId>
25+
<version>9.0.3</version>
26+
<scope>compile</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.jdom</groupId>
30+
<artifactId>jdom2</artifactId>
31+
<version>2.0.6</version>
32+
<scope>compile</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.springframework</groupId>
36+
<artifactId>spring-context</artifactId>
37+
<version>4.3.7.RELEASE</version>
38+
<scope>compile</scope>
39+
</dependency>
40+
41+
<dependency>
42+
<groupId>junit</groupId>
43+
<artifactId>junit</artifactId>
44+
<version>4.12</version>
45+
<scope>test</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.springframework</groupId>
49+
<artifactId>spring-test</artifactId>
50+
<version>4.3.7.RELEASE</version>
51+
<scope>test</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>ch.qos.logback</groupId>
55+
<artifactId>logback-classic</artifactId>
56+
<version>1.1.8</version>
57+
<scope>test</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.slf4j</groupId>
61+
<artifactId>jcl-over-slf4j</artifactId>
62+
<version>1.7.22</version>
63+
<scope>test</scope>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.slf4j</groupId>
67+
<artifactId>slf4j-api</artifactId>
68+
<version>1.7.22</version>
69+
<scope>test</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>none</groupId>
73+
<artifactId>none</artifactId>
74+
<version>none</version>
75+
<scope>system</scope>
76+
<systemPath>${project.basedir}/lib/modules.jar</systemPath>
77+
</dependency>
78+
</dependencies>
79+
</project>

0 commit comments

Comments
 (0)