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.3-SNAPSHOT</version> |
---|
7 | <properties> |
---|
8 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
9 | <neo4j-version>2.0.1</neo4j-version> |
---|
10 | <restlet-version>2.0.15</restlet-version> |
---|
11 | <!-- <restlet-version>2.1.7</restlet-version> --> |
---|
12 | </properties> |
---|
13 | <repositories> |
---|
14 | <repository> |
---|
15 | <id>neo4j-release-repository</id> |
---|
16 | <name>Neo4j Maven 2 release repository</name> |
---|
17 | <url>http://m2.neo4j.org/releases</url> |
---|
18 | <releases> |
---|
19 | <enabled>true</enabled> |
---|
20 | </releases> |
---|
21 | <snapshots> |
---|
22 | <enabled>false</enabled> |
---|
23 | </snapshots> |
---|
24 | </repository> |
---|
25 | <repository> |
---|
26 | <id>maven-restlet</id> |
---|
27 | <name>Public online Restlet repository</name> |
---|
28 | <url>http://maven.restlet.org</url> |
---|
29 | </repository> |
---|
30 | </repositories> |
---|
31 | <dependencies> |
---|
32 | <dependency> |
---|
33 | <groupId>org.neo4j</groupId> |
---|
34 | <artifactId>neo4j</artifactId> |
---|
35 | <version>${neo4j-version}</version> |
---|
36 | </dependency> |
---|
37 | <dependency> |
---|
38 | <groupId>org.neo4j.app</groupId> |
---|
39 | <artifactId>neo4j-server</artifactId> |
---|
40 | <version>${neo4j-version}</version> |
---|
41 | </dependency> |
---|
42 | <dependency> |
---|
43 | <groupId>org.neo4j.app</groupId> |
---|
44 | <artifactId>neo4j-server</artifactId> |
---|
45 | <classifier>static-web</classifier> |
---|
46 | <version>${neo4j-version}</version> |
---|
47 | </dependency> |
---|
48 | <dependency> |
---|
49 | <groupId>org.restlet.jee</groupId> |
---|
50 | <artifactId>org.restlet</artifactId> |
---|
51 | <version>${restlet-version}</version> |
---|
52 | </dependency> |
---|
53 | <dependency> |
---|
54 | <groupId>org.restlet.jee</groupId> |
---|
55 | <artifactId>org.restlet.ext.servlet</artifactId> |
---|
56 | <version>${restlet-version}</version> |
---|
57 | </dependency> |
---|
58 | <dependency> |
---|
59 | <groupId>org.restlet.jee</groupId> |
---|
60 | <artifactId>org.restlet.ext.json</artifactId> |
---|
61 | <version>${restlet-version}</version> |
---|
62 | </dependency> |
---|
63 | <dependency> |
---|
64 | <groupId>com.googlecode.jsontoken</groupId> |
---|
65 | <artifactId>jsontoken</artifactId> |
---|
66 | <version>1.1-SNAPSHOT</version> |
---|
67 | <exclusions> |
---|
68 | <exclusion> |
---|
69 | <artifactId>servlet-api</artifactId> |
---|
70 | <groupId>javax.servlet</groupId> |
---|
71 | </exclusion> |
---|
72 | </exclusions> |
---|
73 | </dependency> |
---|
74 | <dependency> |
---|
75 | <groupId>log4j</groupId> |
---|
76 | <artifactId>log4j</artifactId> |
---|
77 | <version>1.2.14</version> |
---|
78 | </dependency> |
---|
79 | <dependency> |
---|
80 | <groupId>commons-codec</groupId> |
---|
81 | <artifactId>commons-codec</artifactId> |
---|
82 | <version>1.4</version> |
---|
83 | </dependency> |
---|
84 | <dependency> |
---|
85 | <groupId>org.restlet.jee</groupId> |
---|
86 | <artifactId>org.restlet.lib.org.json</artifactId> |
---|
87 | <version>2.0</version> |
---|
88 | </dependency> |
---|
89 | </dependencies> |
---|
90 | <build> |
---|
91 | <finalName>AnnotationManager</finalName> |
---|
92 | <pluginManagement> |
---|
93 | <plugins> |
---|
94 | <plugin> |
---|
95 | <groupId>org.apache.maven.plugins</groupId> |
---|
96 | <artifactId>maven-compiler-plugin</artifactId> |
---|
97 | <configuration> |
---|
98 | <source>1.7</source> |
---|
99 | <target>1.7</target> |
---|
100 | </configuration> |
---|
101 | </plugin> |
---|
102 | </plugins> |
---|
103 | </pluginManagement> |
---|
104 | </build> |
---|
105 | <packaging>war</packaging> |
---|
106 | <name>AnnotationManager</name> |
---|
107 | <organization> |
---|
108 | <name>MPIWG IT Group</name> |
---|
109 | <url>http://itgroup.mpiwg-berlin.mpg.de</url> |
---|
110 | </organization> |
---|
111 | <scm> |
---|
112 | <connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection> |
---|
113 | <url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url> |
---|
114 | <developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection> |
---|
115 | </scm> |
---|
116 | </project> |
---|