提交 | 用户 | 时间
|
722af2
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
X |
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
4 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
5 |
<parent> |
|
6 |
<artifactId>dl-qms</artifactId> |
|
7 |
<groupId>com.dl</groupId> |
|
8 |
<version>0.8.3</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<packaging>jar</packaging> |
|
12 |
<artifactId>dl-admin</artifactId> |
|
13 |
|
|
14 |
<description> |
|
15 |
web服务入口 |
|
16 |
</description> |
|
17 |
|
|
18 |
<dependencies> |
|
19 |
|
|
20 |
<!-- spring-boot-devtools --> |
|
21 |
<dependency> |
|
22 |
<groupId>org.springframework.boot</groupId> |
|
23 |
<artifactId>spring-boot-devtools</artifactId> |
|
24 |
<optional>true</optional> <!-- 表示依赖不会传递 --> |
|
25 |
</dependency> |
|
26 |
|
|
27 |
<!-- Mysql驱动包 --> |
|
28 |
<dependency> |
|
29 |
<groupId>com.mysql</groupId> |
|
30 |
<artifactId>mysql-connector-j</artifactId> |
|
31 |
</dependency> |
|
32 |
<!-- Oracle --> |
|
33 |
<dependency> |
|
34 |
<groupId>com.oracle.database.jdbc</groupId> |
|
35 |
<artifactId>ojdbc8</artifactId> |
|
36 |
</dependency> |
|
37 |
<!-- PostgreSql --> |
|
38 |
<dependency> |
|
39 |
<groupId>org.postgresql</groupId> |
|
40 |
<artifactId>postgresql</artifactId> |
|
41 |
</dependency> |
|
42 |
<!-- SqlServer --> |
|
43 |
<dependency> |
|
44 |
<groupId>com.microsoft.sqlserver</groupId> |
|
45 |
<artifactId>mssql-jdbc</artifactId> |
|
46 |
</dependency> |
|
47 |
|
|
48 |
<!-- 核心模块--> |
|
49 |
<dependency> |
|
50 |
<groupId>com.dl</groupId> |
|
51 |
<artifactId>dl-framework</artifactId> |
|
52 |
</dependency> |
|
53 |
|
|
54 |
<dependency> |
|
55 |
<groupId>com.dl</groupId> |
|
56 |
<artifactId>dl-system</artifactId> |
|
57 |
</dependency> |
|
58 |
|
|
59 |
<dependency> |
|
60 |
<groupId>com.dl</groupId> |
|
61 |
<artifactId>dl-job</artifactId> |
|
62 |
</dependency> |
|
63 |
|
|
64 |
<dependency> |
|
65 |
<groupId>com.dl</groupId> |
|
66 |
<artifactId>dl-oss</artifactId> |
|
67 |
</dependency> |
|
68 |
|
|
69 |
<!-- 代码生成--> |
|
70 |
<dependency> |
|
71 |
<groupId>com.dl</groupId> |
|
72 |
<artifactId>dl-generator</artifactId> |
|
73 |
</dependency> |
|
74 |
|
|
75 |
<!-- demo模块 --> |
|
76 |
<dependency> |
|
77 |
<groupId>com.dl</groupId> |
|
78 |
<artifactId>dl-demo</artifactId> |
|
79 |
</dependency> |
|
80 |
|
|
81 |
<!-- flowable模块--> |
|
82 |
<dependency> |
|
83 |
<groupId>com.dl</groupId> |
|
84 |
<artifactId>dl-flowable</artifactId> |
|
85 |
</dependency> |
|
86 |
|
|
87 |
<dependency> |
|
88 |
<groupId>org.springframework.boot</groupId> |
|
89 |
<artifactId>spring-boot-starter-test</artifactId> |
|
90 |
<scope>test</scope> |
|
91 |
</dependency> |
|
92 |
|
|
93 |
<!-- skywalking 整合 logback --> |
|
94 |
<!-- <dependency>--> |
|
95 |
<!-- <groupId>org.apache.skywalking</groupId>--> |
|
96 |
<!-- <artifactId>apm-toolkit-logback-1.x</artifactId>--> |
|
97 |
<!-- <version>${与你的agent探针版本保持一致}</version>--> |
|
98 |
<!-- </dependency>--> |
|
99 |
<!-- <dependency>--> |
|
100 |
<!-- <groupId>org.apache.skywalking</groupId>--> |
|
101 |
<!-- <artifactId>apm-toolkit-trace</artifactId>--> |
|
102 |
<!-- <version>${与你的agent探针版本保持一致}</version>--> |
|
103 |
<!-- </dependency>--> |
|
104 |
|
|
105 |
<dependency> |
|
106 |
<groupId>org.springframework.boot</groupId> |
|
107 |
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
108 |
</dependency> |
|
109 |
|
|
110 |
</dependencies> |
|
111 |
|
|
112 |
<build> |
|
113 |
<finalName>${project.artifactId}</finalName> |
|
114 |
<plugins> |
|
115 |
<plugin> |
|
116 |
<groupId>org.springframework.boot</groupId> |
|
117 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
118 |
<version>${spring-boot.version}</version> |
|
119 |
<configuration> |
|
120 |
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
|
121 |
</configuration> |
|
122 |
<executions> |
|
123 |
<execution> |
|
124 |
<goals> |
|
125 |
<goal>repackage</goal> |
|
126 |
</goals> |
|
127 |
</execution> |
|
128 |
</executions> |
|
129 |
</plugin> |
|
130 |
<plugin> |
|
131 |
<groupId>org.apache.maven.plugins</groupId> |
|
132 |
<artifactId>maven-war-plugin</artifactId> |
|
133 |
<version>3.2.2</version> |
|
134 |
<configuration> |
|
135 |
<failOnMissingWebXml>false</failOnMissingWebXml> |
|
136 |
<warName>${project.artifactId}</warName> |
|
137 |
</configuration> |
|
138 |
</plugin> |
|
139 |
</plugins> |
|
140 |
</build> |
|
141 |
|
|
142 |
</project> |