| 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.5-SNAPSHOT</version> |
|---|
| 7 | <properties> |
|---|
| 8 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|---|
| 9 | <neo4j-version>2.1.6</neo4j-version> |
|---|
| 10 | <!-- <restlet-version>2.2.3</restlet-version> --> |
|---|
| 11 | <restlet-version>2.3.1</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</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 | <plugins> |
|---|
| 105 | <plugin> |
|---|
| 106 | <groupId>org.codehaus.mojo</groupId> |
|---|
| 107 | <artifactId>license-maven-plugin</artifactId> |
|---|
| 108 | <version>1.4</version> |
|---|
| 109 | <configuration> |
|---|
| 110 | <!-- <verbose>false</verbose> --> |
|---|
| 111 | <licenseName>lgpl_v3</licenseName> |
|---|
| 112 | <roots> |
|---|
| 113 | <root>src/main/java</root> |
|---|
| 114 | </roots> |
|---|
| 115 | </configuration> |
|---|
| 116 | </plugin> |
|---|
| 117 | </plugins> |
|---|
| 118 | </build> |
|---|
| 119 | <packaging>war</packaging> |
|---|
| 120 | <name>AnnotationManager</name> |
|---|
| 121 | <organization> |
|---|
| 122 | <name>IT-Group, MPIWG Berlin</name> |
|---|
| 123 | <url>http://itgroup.mpiwg-berlin.mpg.de</url> |
|---|
| 124 | </organization> |
|---|
| 125 | <scm> |
|---|
| 126 | <connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection> |
|---|
| 127 | <url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url> |
|---|
| 128 | <developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection> |
|---|
| 129 | </scm> |
|---|
| 130 | <inceptionYear>2012</inceptionYear> |
|---|
| 131 | </project> |
|---|