source: AnnotationManagerN4J/pom.xml @ 0:ed1916729773

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

first version

File size: 1.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.0.1-SNAPSHOT</version>
7        <properties>
8                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9                <neo4j-version>1.7.1</neo4j-version>
10        </properties>
11        <repositories>
12                <repository>
13                        <id>neo4j-release-repository</id>
14                        <name>Neo4j Maven 2 release repository</name>
15                        <url>http://m2.neo4j.org/releases</url>
16                        <releases>
17                                <enabled>true</enabled>
18                        </releases>
19                        <snapshots>
20                                <enabled>false</enabled>
21                        </snapshots>
22                </repository>
23        </repositories>
24        <dependencies>
25                <dependency>
26                        <groupId>org.neo4j</groupId>
27                        <artifactId>neo4j</artifactId>
28                        <version>${neo4j-version}</version>
29                </dependency>
30                <dependency>
31                        <groupId>org.neo4j.app</groupId>
32                        <artifactId>neo4j-server</artifactId>
33                        <version>${neo4j-version}</version>
34                </dependency>
35                <dependency>
36                        <groupId>org.neo4j.app</groupId>
37                        <artifactId>neo4j-server</artifactId>
38                        <classifier>static-web</classifier>
39                        <version>${neo4j-version}</version>
40                </dependency>
41        </dependencies>
42</project>
Note: See TracBrowser for help on using the repository browser.