-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
42 lines (39 loc) · 1.62 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.kangspace.wechat.helper</groupId>
<artifactId>wechat-helper</artifactId>
<version>0.1.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<artifactId>wechat-bom</artifactId>
<version>0.1.3-SNAPSHOT</version>
<description>微信开发助手-SDK模块集合</description>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<wechat-helper.version>${parent.version}</wechat-helper.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.kangspace.wechat.helper</groupId>
<artifactId>wechat-core</artifactId>
<version>${wechat-helper.version}</version>
</dependency>
<dependency>
<groupId>org.kangspace.wechat.helper</groupId>
<artifactId>wechat-mp</artifactId>
<version>${wechat-helper.version}</version>
</dependency>
<dependency>
<groupId>org.kangspace.wechat.helper</groupId>
<artifactId>wechat-work</artifactId>
<version>${wechat-helper.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>