-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpom.xml
66 lines (59 loc) · 2.23 KB
/
pom.xml
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
<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>net.paoding</groupId>
<artifactId>jade-plugin-sql</artifactId>
<packaging>jar</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>jade-plugin-sql</name>
<!-- parent -->
<parent>
<groupId>net.paoding</groupId>
<artifactId>paoding-rose-parent</artifactId>
<version>2.0.u04</version>
</parent>
<!-- 开发人员说明 -->
<developers>
<developer>
<name>耿直Alan.Geng</name>
<email>gengzhi718@gmail.com</email>
</developer>
</developers>
<!-- 代码库 -->
<scm>
<connection>scm:git:git@github.com:paoding-code/jade-plugin-sql.git</connection>
<developerConnection>scm:git:git@github.com:paoding-code/jade-plugin-sql.git</developerConnection>
<url>git@github.com:paoding-code/jade-plugin-sql.git</url>
</scm>
<!-- 所有的依赖的版本都必须要在这里定义好,不在具体的dependency写实际的version -->
<properties>
<!-- dependencies version -->
<guava.version>18.0</guava.version>
<fastjson.version>1.2.6</fastjson.version>
</properties>
<dependencies>
<!-- compile scope -->
<dependency>
<groupId>net.paoding</groupId>
<artifactId>paoding-rose-jade</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<!-- test scope -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>${hsqldb.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>