Skip to content

Commit 219360d

Browse files
authored
Merge pull request #52 from hope-for/dev
🎨 0.0.3 描述:优化模块依赖
2 parents 158be3e + 194dbd3 commit 219360d

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
------------------------------
2020

21-
🇨🇳简体中文 | 🇺🇸[English](./README-EN.md) | [更新日志](https://github.com/hope-for/hope-boot/commits/master) | 当前版本:label:[0.0.2](https://github.com/hope-for/hope-boot)
21+
🇨🇳简体中文 | 🇺🇸[English](./README-EN.md) | [更新日志](https://github.com/hope-for/hope-boot/commits/master) | 当前版本:label:[0.0.3](https://github.com/hope-for/hope-boot)
2222

2323
# 模块划分
2424

Diff for: hope-flyway/pom.xml

+21-3
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,44 @@
1414
</description>
1515
<!--继承父模板-->
1616
<parent>
17-
<groupId>com.hope</groupId>
18-
<artifactId>hope-boot</artifactId>
19-
<version>0.0.1-SNAPSHOT</version>
17+
<groupId>org.springframework.boot</groupId>
18+
<artifactId>spring-boot-starter-parent</artifactId>
19+
<version>2.0.5.RELEASE</version>
20+
<relativePath/>
2021
</parent>
2122

23+
<properties>
24+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
26+
<java.version>1.8</java.version>
27+
</properties>
28+
2229
<dependencies>
2330
<dependency>
2431
<groupId>org.mybatis.spring.boot</groupId>
2532
<artifactId>mybatis-spring-boot-starter</artifactId>
2633
<version>1.3.2</version>
2734
</dependency>
35+
<dependency>
36+
<groupId>org.springframework.boot</groupId>
37+
<artifactId>spring-boot-starter-web</artifactId>
38+
</dependency>
2839
<dependency>
2940
<groupId>org.flywaydb</groupId>
3041
<artifactId>flyway-core</artifactId>
3142
</dependency>
43+
3244
<dependency>
3345
<groupId>mysql</groupId>
3446
<artifactId>mysql-connector-java</artifactId>
3547
<scope>runtime</scope>
3648
</dependency>
49+
<dependency>
50+
<groupId>org.springframework.boot</groupId>
51+
<artifactId>spring-boot-starter-test</artifactId>
52+
<scope>test</scope>
53+
</dependency>
3754
</dependencies>
55+
3856
<!--该模块不需要打包-->
3957
</project>

Diff for: pom.xml

-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<module>hope-framework</module>
1414
<module>hope-sso-server</module>
1515
<module>hope-generator</module>
16-
<module>hope-flyway</module>
1716
</modules>
1817
<packaging>pom</packaging>
1918

@@ -92,11 +91,6 @@
9291
<artifactId>hope-generator</artifactId>
9392
<version>0.0.1-SNAPSHOT</version>
9493
</dependency>
95-
<dependency>
96-
<groupId>com.hope</groupId>
97-
<artifactId>hope-flyway</artifactId>
98-
<version>0.0.1-SNAPSHOT</version>
99-
</dependency>
10094
</dependencies>
10195
</dependencyManagement>
10296

0 commit comments

Comments
 (0)