source: AnnotationManagerN4J/pom.xml @ 89:247cbbb385de

Last change on this file since 89:247cbbb385de was 88:b406507a953d, checked in by casties, 9 years ago

upped version to 0.5.
can use display name and groups from auth token.

File size: 4.2 KB
Line 
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.0.15</restlet-version> -->
11    <!-- <restlet-version>2.1.7</restlet-version> -->
12    <restlet-version>2.2.3</restlet-version>
13  </properties>
14  <repositories>
15    <repository>
16      <id>neo4j-release-repository</id>
17      <name>Neo4j Maven 2 release repository</name>
18      <url>http://m2.neo4j.org/releases</url>
19      <releases>
20        <enabled>true</enabled>
21      </releases>
22      <snapshots>
23        <enabled>false</enabled>
24      </snapshots>
25    </repository>
26    <repository>
27      <id>maven-restlet</id>
28      <name>Public online Restlet repository</name>
29      <url>http://maven.restlet.org</url>
30    </repository>
31  </repositories>
32  <dependencies>
33    <dependency>
34      <groupId>org.neo4j</groupId>
35      <artifactId>neo4j</artifactId>
36      <version>${neo4j-version}</version>
37    </dependency>
38    <dependency>
39      <groupId>org.neo4j.app</groupId>
40      <artifactId>neo4j-server</artifactId>
41      <version>${neo4j-version}</version>
42    </dependency>
43    <dependency>
44      <groupId>org.neo4j.app</groupId>
45      <artifactId>neo4j-server</artifactId>
46      <classifier>static-web</classifier>
47      <version>${neo4j-version}</version>
48    </dependency>
49    <dependency>
50      <groupId>org.restlet.jee</groupId>
51      <artifactId>org.restlet</artifactId>
52      <version>${restlet-version}</version>
53    </dependency>
54    <dependency>
55      <groupId>org.restlet.jee</groupId>
56      <artifactId>org.restlet.ext.servlet</artifactId>
57      <version>${restlet-version}</version>
58    </dependency>
59    <dependency>
60      <groupId>org.restlet.jee</groupId>
61      <artifactId>org.restlet.ext.json</artifactId>
62      <version>${restlet-version}</version>
63    </dependency>
64    <dependency>
65      <groupId>com.googlecode.jsontoken</groupId>
66      <artifactId>jsontoken</artifactId>
67      <version>1.1</version>
68      <exclusions>
69        <exclusion>
70          <artifactId>servlet-api</artifactId>
71          <groupId>javax.servlet</groupId>
72        </exclusion>
73      </exclusions>
74    </dependency>
75    <dependency>
76      <groupId>log4j</groupId>
77      <artifactId>log4j</artifactId>
78      <version>1.2.14</version>
79    </dependency>
80    <dependency>
81      <groupId>commons-codec</groupId>
82      <artifactId>commons-codec</artifactId>
83      <version>1.4</version>
84    </dependency>
85    <dependency>
86      <groupId>org.restlet.jee</groupId>
87      <artifactId>org.restlet.lib.org.json</artifactId>
88      <version>2.0</version>
89    </dependency>
90  </dependencies>
91  <build>
92    <finalName>AnnotationManager</finalName>
93    <pluginManagement>
94      <plugins>
95        <plugin>
96          <groupId>org.apache.maven.plugins</groupId>
97          <artifactId>maven-compiler-plugin</artifactId>
98          <configuration>
99            <source>1.7</source>
100            <target>1.7</target>
101          </configuration>
102        </plugin>
103      </plugins>
104    </pluginManagement>
105    <plugins>
106      <plugin>
107        <groupId>org.codehaus.mojo</groupId>
108        <artifactId>license-maven-plugin</artifactId>
109        <version>1.4</version>
110        <configuration>
111          <!-- <verbose>false</verbose> -->
112          <licenseName>lgpl_v3</licenseName>
113          <roots>
114            <root>src/main/java</root>
115          </roots>
116        </configuration>
117      </plugin>
118    </plugins>
119  </build>
120  <packaging>war</packaging>
121  <name>AnnotationManager</name>
122  <organization>
123    <name>IT-Group, MPIWG Berlin</name>
124    <url>http://itgroup.mpiwg-berlin.mpg.de</url>
125  </organization>
126  <scm>
127    <connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection>
128    <url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url>
129    <developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection>
130  </scm>
131  <inceptionYear>2012</inceptionYear>
132</project>
Note: See TracBrowser for help on using the repository browser.