-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
108 lines (99 loc) · 3.71 KB
/
pom.xml
File metadata and controls
108 lines (99 loc) · 3.71 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>com.hb0730</groupId>
<artifactId>spring-boot-samples-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>spring-boot-samples</name>
<description>提供Java工具方法</description>
<url></url>
<modules>
<module>spring-boot-annotation-params</module>
<module>spring-boot-test</module>
<module>datasource-export-spring-boot-parent</module>
<module>spring-boot-dynamictask</module>
<module>spring-boot-rocketmq</module>
<module>spring-boot-starter-samples</module>
<module>spring-boot-rabbitmq</module>
<module>http-restemplate-spring-boot</module>
<module>spring-boot-close</module>
<module>spring-boot-listener</module>
<module>spring-boot-event</module>
<module>spring-boot-oauth2</module>
<module>spring-boot-seata</module>
<module>spring-boot-security</module>
<module>spring-boot-quartz</module>
<module>spring-mail</module>
<module>spring-boot-i18n</module>
<module>spring-boot-dynamic-security</module>
<module>spring-boot-mybatis-samples</module>
<module>spring-boot-redis-samples</module>
<module>spring-boot-file-samples</module>
<module>spring-boot-webssh</module>
<module>spring-boot-graphql</module>
<module>spring-boot-hessian</module>
</modules>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
<!-- versions -->
<compile.version>7</compile.version>
<junit.version>4.12</junit.version>
<java.version>1.8</java.version>
</properties>
<dependencies>
<!-- 全局单元测试 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<issueManagement>
<system>Github Issue</system>
<url></url>
</issueManagement>
<licenses>
<license>
<name>Mulan Permissive Software License,Version 1</name>
<url>http://license.coscl.org.cn/MulanPSL</url>
</license>
</licenses>
<developers>
<developer>
<name>hb0730</name>
<email>huangbing0730@gmail.com</email>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${compile.version}</source>
<target>${compile.version}</target>
</configuration>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>