Biblioteca Java - Blame information for rev 18
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
18 | mihai | 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 | |||
5 | <groupId>Neo4JTutorial</groupId> | ||
6 | <artifactId>Neo4JTutorial</artifactId> | ||
7 | <version>0.0.1-SNAPSHOT</version> | ||
8 | <packaging>jar</packaging> | ||
9 | |||
10 | <name>Neo4JTutorial</name> | ||
11 | <url>http://maven.apache.org</url> | ||
12 | |||
13 | <properties> | ||
14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
15 | </properties> | ||
16 | |||
17 | |||
18 | <dependencies> | ||
19 | <dependency> | ||
20 | <groupId>junit</groupId> | ||
21 | <artifactId>junit</artifactId> | ||
22 | <version>3.8.1</version> | ||
23 | <scope>test</scope> | ||
24 | </dependency> | ||
25 | |||
26 | <dependency> | ||
27 | <groupId>org.neo4j</groupId> | ||
28 | <artifactId>neo4j</artifactId> | ||
29 | <!-- <version>1.2.M03</version> --> | ||
30 | <version>2.1.5</version> | ||
31 | <type>pom</type> | ||
32 | </dependency> | ||
33 | <dependency> | ||
34 | <groupId>junit</groupId> | ||
35 | <artifactId>junit</artifactId> | ||
36 | <version>4.7</version> | ||
37 | <scope>test</scope> | ||
38 | </dependency> | ||
39 | |||
40 | </dependencies> | ||
41 | </project> |