-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpom.xml
More file actions
93 lines (76 loc) · 2.63 KB
/
Copy pathpom.xml
File metadata and controls
93 lines (76 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ydj.neo4j</groupId>
<artifactId>Neo4jForRec</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Neo4jForRec</name>
<url>https://github.com/Aresyi/Neo4jForRec.git</url>
<description>Use Neo4j Graph DataBase for friend recommend.</description>
<developers>
<developer>
<id>Neo4jForRec</id>
<name>Ares</name>
<email>[email protected]</email>
<url>http://yidejun.com</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring_version>4.2.5.RELEASE</spring_version>
<spring-boot.version>1.3.3.RELEASE</spring-boot.version>
<!-- 私服仓库地址 -->
<repository_url>http://192.168.254.12:8081</repository_url>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jdbc-driver</artifactId>
<version>3.0.1</version>
</dependency>
<!-- end::dependencies[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.3</version>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>9tong-release</id>
<url>${repository_url}/nexus/content/repositories/9tong-release</url>
</repository>
<snapshotRepository>
<id>9tong-snapshot</id>
<url>${repository_url}/nexus/content/repositories/9tong-snapshot</url>
</snapshotRepository>
</distributionManagement>
<build/>
</project>