|
1
2
3
4
|
<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>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-parent</artifactId>
|
|
5
|
<version>2.3.0</version>
|
|
6
7
8
|
<packaging>pom</packaging>
<parent>
|
|
9
10
|
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
|
|
11
|
<version>2.1.3.RELEASE</version>
|
|
12
13
14
|
<relativePath/>
</parent>
|
|
15
16
17
|
<properties>
<jeecgboot.version>2.3.0</jeecgboot.version>
</properties>
|
|
18
19
20
|
<modules>
<module>jeecg-boot-base-common</module>
|
|
21
|
<module>jeecg-boot-base-api</module>
|
|
22
|
<module>jeecg-boot-module-system</module>
|
|
23
24
|
<module>jeecg-boot-module-demo</module>
<module>jeecg-cloud-module</module>
|
|
25
|
</modules>
|
|
26
|
|
|
27
28
29
30
31
32
33
34
35
36
37
38
|
<distributionManagement>
<repository>
<id>jeecg</id>
<name>jeecg Repository</name>
<url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
</repository>
<snapshotRepository>
<id>jeecg-snapshots</id>
<name>jeecg Snapshot Repository</name>
<url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
|
|
39
|
|
|
40
41
42
43
44
45
46
47
48
49
50
51
|
<repositories>
<repository>
<id>aliyun</id>
<name>aliyun Repository</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>jeecg</id>
<name>jeecg Repository</name>
|
|
52
|
<url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
|
53
54
55
56
57
|
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
|
|
58
|
|
|
59
|
<dependencies>
|
|
60
|
<dependency>
|
|
61
|
<groupId>org.springframework.boot</groupId>
|
|
62
63
|
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
|
|
64
|
</dependency>
|
|
65
66
67
68
69
|
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
|
|
70
71
|
<!-- json -->
<dependency>
|
|
72
73
74
|
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.72</version>
|
|
75
|
</dependency>
|
|
76
77
|
</dependencies>
|
|
78
79
|
<dependencyManagement>
<dependencies>
|
|
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
|
<!-- spring boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.1.3.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- spring-cloud-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- spring-cloud-alibaba -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.1.0.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- jeecg common -->
|
|
106
|
<dependency>
|
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-base-common</artifactId>
<version>${jeecgboot.version}</version>
</dependency>
<!-- system 单体 api -->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-system-local-api</artifactId>
<version>${jeecgboot.version}</version>
</dependency>
<!-- system 微服务 api -->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-system-cloud-api</artifactId>
<version>${jeecgboot.version}</version>
</dependency>
<!-- 七牛云SDK -->
|
|
127
128
129
130
131
|
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
<version>7.2.23</version>
</dependency>
|
|
132
133
|
</dependencies>
</dependencyManagement>
|
|
134
|
|
|
135
136
|
<build>
<plugins>
|
|
137
138
139
140
141
|
<!--<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
指定JDK编译版本 -->
|
|
142
143
144
145
146
147
148
149
150
|
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
|
|
151
152
153
154
155
156
157
158
|
<!-- 打包跳过测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
|
|
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
<!-- 避免font文件的二进制文件格式压缩破坏 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<nonFilteredFileExtensions>
<nonFilteredFileExtension>woff</nonFilteredFileExtension>
<nonFilteredFileExtension>woff2</nonFilteredFileExtension>
<nonFilteredFileExtension>eot</nonFilteredFileExtension>
<nonFilteredFileExtension>ttf</nonFilteredFileExtension>
<nonFilteredFileExtension>svg</nonFilteredFileExtension>
</nonFilteredFileExtensions>
</configuration>
</plugin>
|
|
173
174
175
176
177
178
179
180
181
182
183
|
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.json</include>
|
|
184
|
<include>**/*.ftl</include>
|
|
185
186
187
188
189
|
</includes>
</resource>
</resources>
</build>
</project>
|