source: AnnotationManagerN4J/pom.xml @ 18:aafa3884b2c4

Last change on this file since 18:aafa3884b2c4 was 18:aafa3884b2c4, checked in by casties, 12 years ago

new AnnotationStore? restlet for HTML-UI.
reorganisation of classes.

File size: 3.3 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.2.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                <finalName>AnnotationManager</finalName>
86                <pluginManagement>
87                        <plugins>
88                                <plugin>
89                                        <groupId>org.apache.maven.plugins</groupId>
90                                        <artifactId>maven-compiler-plugin</artifactId>
91                                        <configuration>
92                                                <source>1.6</source>
93                                                <target>1.6</target>
94                                        </configuration>
95                                </plugin>
96                        </plugins>
97                </pluginManagement>
98        </build>
99        <packaging>war</packaging>
100        <name>AnnotationManager</name>
101        <organization>
102                <name>MPIWG IT Group</name>
103                <url>http://itgroup.mpiwg-berlin.mpg.de</url>
104        </organization>
105        <scm>
106                <connection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</connection>
107                <url>https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</url>
108                <developerConnection>scm:hg:https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J</developerConnection>
109        </scm>
110</project>
Note: See TracBrowser for help on using the repository browser.