-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpom.xml
More file actions
73 lines (66 loc) · 3.23 KB
/
Copy pathpom.xml
File metadata and controls
73 lines (66 loc) · 3.23 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
<?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>
<groupId>io.github.easy4j</groupId>
<artifactId>spring-boot-starter-samples</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Boot Starter Samples</name>
<description>Spring Boot Starter Samples</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<spring-boot.version>1.5.22.RELEASE</spring-boot.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- 替代已失效的 net.jeebiz:jeebiz-boot-parent 提供的版本管理:Spring Boot 1.5.x(Spring 4.3.x) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<!-- 可从公共仓库解析依赖并通过构建的示例 -->
<module>spring-boot-sample-jetbrick</module>
<module>spring-boot-sample-sharding-jdbc</module>
<module>spring-boot-sample-swagger2</module>
<!-- pf4j 插件示例子树(独立聚合器,含 Dependabot 安全告警修复目标) -->
<module>spring-boot-sample-pf4j/pf4j-plugin-sample</module>
<module>spring-boot-sample-pf4j2/pf4j2-plugin-sample</module>
</modules>
<!--
历史示例:依赖未发布到中央仓库的构件(io.github.hiwepy:* starter、
com.oracle:ojdbc6 等)或 pom 存在历史遗留问题,暂不参与默认构建。
启用方式:mvn -P legacy-samples clean verify
-->
<profiles>
<profile>
<id>legacy-samples</id>
<modules>
<module>spring-boot-sample-axis2</module>
<module>spring-boot-sample-casclient</module>
<module>spring-boot-sample-cxf</module>
<module>spring-boot-sample-disruptor</module>
<module>spring-boot-sample-druid</module>
<module>spring-boot-sample-ehcache3</module>
<module>spring-boot-sample-flyway</module>
<module>spring-boot-sample-hikaricp</module>
<module>spring-boot-sample-kaptcha</module>
<module>spring-boot-sample-log4j2</module>
<module>spring-boot-sample-pf4j</module>
<module>spring-boot-sample-pf4j2</module>
<module>spring-boot-sample-rocketmq</module>
<module>spring-boot-sample-socketio</module>
<module>spring-boot-sample-websocket</module>
</modules>
</profile>
</profiles>
</project>