1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <groupId>de.mpiwg.itgroup.annotations</groupId> |
---|
5 | <artifactId>AnnotationManagerN4J</artifactId> |
---|
6 | <version>0.0.1-SNAPSHOT</version> |
---|
7 | <properties> |
---|
8 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
9 | <neo4j-version>1.7.1</neo4j-version> |
---|
10 | <restlet-version>2.0.14</restlet-version> |
---|
11 | </properties> |
---|
12 | <repositories> |
---|
13 | <repository> |
---|
14 | <id>neo4j-release-repository</id> |
---|
15 | <name>Neo4j Maven 2 release repository</name> |
---|
16 | <url>http://m2.neo4j.org/releases</url> |
---|
17 | <releases> |
---|
18 | <enabled>true</enabled> |
---|
19 | </releases> |
---|
20 | <snapshots> |
---|
21 | <enabled>false</enabled> |
---|
22 | </snapshots> |
---|
23 | </repository> |
---|
24 | <repository> |
---|
25 | <id>maven-restlet</id> |
---|
26 | <name>Public online Restlet repository</name> |
---|
27 | <url>http://maven.restlet.org</url> |
---|
28 | </repository> |
---|
29 | </repositories> |
---|
30 | <dependencies> |
---|
31 | <dependency> |
---|
32 | <groupId>org.neo4j</groupId> |
---|
33 | <artifactId>neo4j</artifactId> |
---|
34 | <version>${neo4j-version}</version> |
---|
35 | </dependency> |
---|
36 | <dependency> |
---|
37 | <groupId>org.neo4j.app</groupId> |
---|
38 | <artifactId>neo4j-server</artifactId> |
---|
39 | <version>${neo4j-version}</version> |
---|
40 | </dependency> |
---|
41 | <dependency> |
---|
42 | <groupId>org.neo4j.app</groupId> |
---|
43 | <artifactId>neo4j-server</artifactId> |
---|
44 | <classifier>static-web</classifier> |
---|
45 | <version>${neo4j-version}</version> |
---|
46 | </dependency> |
---|
47 | <dependency> |
---|
48 | <groupId>org.restlet.jee</groupId> |
---|
49 | <artifactId>org.restlet</artifactId> |
---|
50 | <version>${restlet-version}</version> |
---|
51 | </dependency> |
---|
52 | <dependency> |
---|
53 | <groupId>org.restlet.jee</groupId> |
---|
54 | <artifactId>org.restlet.ext.servlet</artifactId> |
---|
55 | <version>${restlet-version}</version> |
---|
56 | </dependency> |
---|
57 | <dependency> |
---|
58 | <groupId>org.restlet.jee</groupId> |
---|
59 | <artifactId>org.restlet.ext.json</artifactId> |
---|
60 | <version>${restlet-version}</version> |
---|
61 | </dependency> |
---|
62 | <dependency> |
---|
63 | <groupId>com.googlecode.jsontoken</groupId> |
---|
64 | <artifactId>jsontoken</artifactId> |
---|
65 | <version>1.1-SNAPSHOT</version> |
---|
66 | <exclusions> |
---|
67 | <exclusion> |
---|
68 | <artifactId>servlet-api</artifactId> |
---|
69 | <groupId>javax.servlet</groupId> |
---|
70 | </exclusion> |
---|
71 | </exclusions> |
---|
72 | </dependency> |
---|
73 | <dependency> |
---|
74 | <groupId>log4j</groupId> |
---|
75 | <artifactId>log4j</artifactId> |
---|
76 | <version>1.2.14</version> |
---|
77 | </dependency> |
---|
78 | <dependency> |
---|
79 | <groupId>commons-codec</groupId> |
---|
80 | <artifactId>commons-codec</artifactId> |
---|
81 | <version>1.4</version> |
---|
82 | </dependency> |
---|
83 | </dependencies> |
---|
84 | <build> |
---|
85 | <pluginManagement> |
---|
86 | <plugins> |
---|
87 | <plugin> |
---|
88 | <groupId>org.apache.maven.plugins</groupId> |
---|
89 | <artifactId>maven-compiler-plugin</artifactId> |
---|
90 | <configuration> |
---|
91 | <source>1.6</source> |
---|
92 | <target>1.6</target> |
---|
93 | </configuration> |
---|
94 | </plugin> |
---|
95 | </plugins> |
---|
96 | </pluginManagement> |
---|
97 | </build> |
---|
98 | <packaging>war</packaging> |
---|
99 | <name>AnnotationManager</name> |
---|
100 | </project> |
---|