-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
89 lines (83 loc) · 2.51 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>net.engining.project</groupId>
<artifactId>project-parent</artifactId>
<version>3.4-SNAPSHOT</version>
</parent>
<groupId>net.engining.pg</groupId>
<artifactId>pg-parent</artifactId>
<packaging>pom</packaging>
<version>3.4.0-SNAPSHOT</version>
<name>PowerGear - 开发框架</name>
<properties>
<pg.version>3.4.0-SNAPSHOT</pg.version>
</properties>
<modules>
<module>pg-support</module>
<module>pg-config</module>
<module>pg-maven-plugin</module>
<module>pg-parameter</module>
<module>pg-batch</module>
<module>pg-mq</module>
<module>pg-web</module>
</modules>
<dependencyManagement>
<!-- 这里是所有子项目使用的依赖项的一个全集,用于在这里统一定义版本,子项目里不需要再指定 -->
<dependencies>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-support</artifactId>
<version>${pg.version}</version>
</dependency>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-config</artifactId>
<version>${pg.version}</version>
</dependency>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-parameter-dict</artifactId>
<version>${pg.version}</version>
</dependency>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-parameter-help</artifactId>
<version>${pg.version}</version>
</dependency>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-batch-dict</artifactId>
<version>${pg.version}</version>
</dependency>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-batch-help</artifactId>
<version>${pg.version}</version>
</dependency>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-mq</artifactId>
<version>${pg.version}</version>
</dependency>
<dependency>
<groupId>net.engining.pg</groupId>
<artifactId>pg-web</artifactId>
<version>${pg.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>net.engining.pg</groupId>
<artifactId>pg-maven-plugin</artifactId>
<version>${pg.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>