Skip to content

Commit de842cb

Browse files
committed
添加开发,测试环境
修改pom.xml依赖使其能够正常打包
1 parent 50d80a7 commit de842cb

File tree

16 files changed

+503
-361
lines changed

16 files changed

+503
-361
lines changed

pom.xml

Lines changed: 0 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -35,87 +35,6 @@
3535
<groupId>org.springframework.boot</groupId>
3636
<artifactId>spring-boot-starter-test</artifactId>
3737
</dependency>
38-
<!--SpringSecurity-->
39-
<dependency>
40-
<groupId>org.springframework.boot</groupId>
41-
<artifactId>spring-boot-starter-security</artifactId>
42-
</dependency>
43-
<!--rabbitmq-->
44-
<dependency>
45-
<groupId>org.springframework.boot</groupId>
46-
<artifactId>spring-boot-starter-amqp</artifactId>
47-
</dependency>
48-
<dependency>
49-
<groupId>org.springframework.security</groupId>
50-
<artifactId>spring-security-test</artifactId>
51-
<scope>test</scope>
52-
</dependency>
53-
<!-- fastjson-->
54-
<dependency>
55-
<groupId>com.alibaba</groupId>
56-
<artifactId>fastjson</artifactId>
57-
<version>1.2.75</version>
58-
</dependency>
59-
<!--commons文件-->
60-
<dependency>
61-
<groupId>commons-io</groupId>
62-
<artifactId>commons-io</artifactId>
63-
<version>2.4</version>
64-
</dependency>
65-
<!--Swagger3.0-->
66-
<dependency>
67-
<groupId>io.springfox</groupId>
68-
<artifactId>springfox-boot-starter</artifactId>
69-
<version>3.0.0</version>
70-
</dependency>
71-
<!--数据库驱动-->
72-
<dependency>
73-
<groupId>mysql</groupId>
74-
<artifactId>mysql-connector-java</artifactId>
75-
</dependency>
76-
<!--redis-->
77-
<dependency>
78-
<groupId>org.springframework.boot</groupId>
79-
<artifactId>spring-boot-starter-data-redis</artifactId>
80-
</dependency>
81-
<!--mybaits-plus-->
82-
<dependency>
83-
<groupId>com.baomidou</groupId>
84-
<artifactId>mybatis-plus-boot-starter</artifactId>
85-
<version>3.0.5</version>
86-
</dependency>
87-
<!-- 分页插件 -->
88-
<dependency>
89-
<groupId>com.github.pagehelper</groupId>
90-
<artifactId>pagehelper-spring-boot-starter</artifactId>
91-
<version>1.3.0</version>
92-
</dependency>
93-
<!-- 数据库密码加密-->
94-
<dependency>
95-
<groupId>com.github.ulisesbocchio</groupId>
96-
<artifactId>jasypt-spring-boot</artifactId>
97-
<version>3.0.2</version>
98-
</dependency>
99-
<!--lombok-->
100-
<dependency>
101-
<groupId>org.projectlombok</groupId>
102-
<artifactId>lombok</artifactId>
103-
<optional>true</optional>
104-
</dependency>
105-
<!--commons-lang 字符串处理-->
106-
<dependency>
107-
<groupId>commons-lang</groupId>
108-
<artifactId>commons-lang</artifactId>
109-
<version>2.6</version>
110-
</dependency>
111-
<!--七牛云 -->
112-
<dependency>
113-
<groupId>com.qiniu</groupId>
114-
<artifactId>qiniu-java-sdk</artifactId>
115-
<version>7.7.0</version>
116-
</dependency>
117-
118-
11938
</dependencies>
12039

12140
<build>

springboot-dubbo-api/pom.xml

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>com.lzq</groupId>
7-
<artifactId>springboot-duboo</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starter-parent</artifactId>
8+
<version>2.3.7.RELEASE</version>
9+
<relativePath/> <!-- lookup parent from repository -->
910
</parent>
11+
12+
1013
<groupId>com.lzq</groupId>
1114
<artifactId>api</artifactId>
1215
<version>0.0.1-SNAPSHOT</version>
1316
<name>api</name>
1417
<description>Demo project for Spring Boot</description>
18+
1519
<properties>
1620
<java.version>1.8</java.version>
1721
</properties>
@@ -20,6 +24,36 @@
2024
<groupId>org.projectlombok</groupId>
2125
<artifactId>lombok</artifactId>
2226
</dependency>
27+
<!--Swagger3.0-->
28+
<dependency>
29+
<groupId>io.springfox</groupId>
30+
<artifactId>springfox-boot-starter</artifactId>
31+
<version>3.0.0</version>
32+
</dependency>
33+
<!--mybaits-plus-->
34+
<dependency>
35+
<groupId>com.baomidou</groupId>
36+
<artifactId>mybatis-plus-boot-starter</artifactId>
37+
<version>3.0.5</version>
38+
</dependency>
39+
<!-- 分页插件 -->
40+
<dependency>
41+
<groupId>com.github.pagehelper</groupId>
42+
<artifactId>pagehelper-spring-boot-starter</artifactId>
43+
<version>1.3.0</version>
44+
</dependency>
45+
<!--SpringSecurity-->
46+
<dependency>
47+
<groupId>org.springframework.boot</groupId>
48+
<artifactId>spring-boot-starter-security</artifactId>
49+
</dependency>
50+
<!-- fastjson-->
51+
<dependency>
52+
<groupId>com.alibaba</groupId>
53+
<artifactId>fastjson</artifactId>
54+
<version>1.2.75</version>
55+
</dependency>
2356
</dependencies>
2457

58+
2559
</project>

0 commit comments

Comments
 (0)