-
Notifications
You must be signed in to change notification settings - Fork 21
/
pom.xml
70 lines (56 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
67
68
69
70
<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">
<parent>
<!-- 该依赖位于 lamp-util 项目,请先编译lamp-util -->
<groupId>top.tangyh.basic</groupId>
<artifactId>lamp-parent</artifactId>
<version>5.0.3</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.xuxueli</groupId>
<artifactId>lamp-job</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>A distributed task scheduling framework.</description>
<url>https://github.com/zuihou</url>
<modules>
<module>xxl-job-admin</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.test.skip>true</maven.test.skip>
<netty-all.version>4.1.54.Final</netty-all.version>
<gson.version>2.8.6</gson.version>
<!-- <spring.version>5.3.9</spring.version>-->
<!-- <spring-boot.version>2.5.3</spring-boot.version>-->
<mybatis-spring-boot-starter.version>3.0.3</mybatis-spring-boot-starter.version>
<!-- <mysql.version>8.0.29</mysql.version>-->
<slf4j-api.version>1.7.30</slf4j-api.version>
<junit.version>4.21.2-java17</junit.version>
<jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version>
<groovy.version>4.0.0</groovy.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-war-plugin.version>3.3.1</maven-war-plugin.version>
</properties>
<licenses>
<license>
<name>GNU General Public License version 3</name>
<url>https://opensource.org/licenses/GPL-3.0</url>
</license>
</licenses>
<developers>
<developer>
<id>zuihou</id>
<name>zuihou</name>
<email>[email protected]</email>
<url>https://github.com/zuihou</url>
</developer>
</developers>
</project>