Skip to content

Commit 9510c2f

Browse files
committed
1
1 parent a773f94 commit 9510c2f

File tree

12 files changed

+241
-14
lines changed

12 files changed

+241
-14
lines changed

jun_springboot_admin/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,17 @@
2929
<thymeleaf-shiro.version>2.0.0</thymeleaf-shiro.version>
3030
<knife4j.version>2.0.2</knife4j.version>
3131
<easy-captcha.version>1.6.2</easy-captcha.version>
32+
<plugin.version>1.0</plugin.version>
3233
</properties>
3334

3435
<dependencies>
36+
<!-- 核心模块 -->
37+
<!-- <dependency>
38+
<groupId>com.jun.plugin</groupId>
39+
<artifactId>jun_springboot_framework</artifactId>
40+
<version>${plugin.version}</version>
41+
</dependency> -->
42+
3543
<dependency>
3644
<groupId>org.springframework.boot</groupId>
3745
<artifactId>spring-boot-starter-web</artifactId>

jun_springboot_app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>com.jun.plugin</groupId>
6868
<artifactId>jun_springboot_common</artifactId>
69-
<version>${royal.version}</version>
69+
<version>${plugin.version}</version>
7070
</dependency>
7171

7272
<!-- pagehelper 分页插件 -->

jun_springboot_app/src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Application Version: ${royal.version}
1+
Application Version: ${plugin.version}
22
Spring Boot Version: ${spring-boot.version}
33
_
44
\"-._ _.--"~~"--._

jun_springboot_bizservice/pom.xml

Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.jun.plugin</groupId>
6+
<artifactId>jun_springboot_bizservice</artifactId>
7+
<version>1.0</version>
8+
9+
<properties>
10+
<java.version>1.8</java.version>
11+
<mybatis-plus.version>3.4.0</mybatis-plus.version>
12+
<mybatis-plus-dynamic.version>2.5.5</mybatis-plus-dynamic.version>
13+
<ojdbc6.version>12.1.0.1-atlassian-hosted</ojdbc6.version>
14+
<sqlserver.version>4.0</sqlserver.version>
15+
<commons.lang.version>2.6</commons.lang.version>
16+
<commons.io.version>2.5</commons.io.version>
17+
<commons.configuration.version>1.10</commons.configuration.version>
18+
<velocity.version>1.7</velocity.version>
19+
<quartz.version>2.3.2</quartz.version>
20+
<shiro.version>1.4.0</shiro.version>
21+
<druid.version>1.1.10</druid.version>
22+
<fastjson.version>1.2.74</fastjson.version>
23+
<thymeleaf-shiro.version>2.0.0</thymeleaf-shiro.version>
24+
<knife4j.version>2.0.2</knife4j.version>
25+
<easy-captcha.version>1.6.2</easy-captcha.version>
26+
<plugin.version>1.0</plugin.version>
27+
</properties>
28+
29+
30+
<dependencyManagement>
31+
<dependencies>
32+
<dependency>
33+
<groupId>org.springframework.boot</groupId>
34+
<artifactId>spring-boot-dependencies</artifactId>
35+
<version>2.1.6.RELEASE</version>
36+
<type>pom</type>
37+
<scope>import</scope>
38+
</dependency>
39+
</dependencies>
40+
</dependencyManagement>
41+
42+
<dependencies>
43+
<!-- <dependency>
44+
<groupId>com.jun.plugin</groupId>
45+
<artifactId>jun_springboot_framework</artifactId>
46+
<version>${plugin.version}</version>
47+
</dependency> -->
48+
49+
<dependency>
50+
<groupId>org.springframework.boot</groupId>
51+
<artifactId>spring-boot-starter-web</artifactId>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>org.springframework.boot</groupId>
56+
<artifactId>spring-boot-starter-test</artifactId>
57+
<scope>test</scope>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>org.springframework.boot</groupId>
62+
<artifactId>spring-boot-starter-aop</artifactId>
63+
</dependency>
64+
65+
<!--数据源-->
66+
<dependency>
67+
<groupId>com.alibaba</groupId>
68+
<artifactId>druid-spring-boot-starter</artifactId>
69+
<version>${druid.version}</version>
70+
</dependency>
71+
<!--redis 依赖-->
72+
<dependency>
73+
<groupId>org.springframework.boot</groupId>
74+
<artifactId>spring-boot-starter-data-redis</artifactId>
75+
</dependency>
76+
77+
<!--shiro 依赖-->
78+
<dependency>
79+
<groupId>org.apache.shiro</groupId>
80+
<artifactId>shiro-spring</artifactId>
81+
<version>${shiro.version}</version>
82+
</dependency>
83+
<!--lombok-->
84+
<dependency>
85+
<groupId>org.projectlombok</groupId>
86+
<artifactId>lombok</artifactId>
87+
</dependency>
88+
<!--fastJson-->
89+
<dependency>
90+
<groupId>com.alibaba</groupId>
91+
<artifactId>fastjson</artifactId>
92+
<version>${fastjson.version}</version>
93+
</dependency>
94+
95+
<!--thymeleaf默认使用html5规则标签必须闭合等 使用次此包正常解析-->
96+
<dependency>
97+
<groupId>org.springframework.boot</groupId>
98+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
99+
</dependency>
100+
<dependency>
101+
<groupId>com.github.theborakompanioni</groupId>
102+
<artifactId>thymeleaf-extras-shiro</artifactId>
103+
<version>${thymeleaf-shiro.version}</version>
104+
</dependency>
105+
<!--数据库持久化 及 插件依赖-->
106+
<dependency>
107+
<groupId>com.baomidou</groupId>
108+
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
109+
<version>${mybatis-plus-dynamic.version}</version>
110+
</dependency>
111+
<dependency>
112+
<groupId>com.baomidou</groupId>
113+
<artifactId>mybatis-plus</artifactId>
114+
<version>${mybatis-plus.version}</version>
115+
</dependency>
116+
<dependency>
117+
<groupId>com.baomidou</groupId>
118+
<artifactId>mybatis-plus-boot-starter</artifactId>
119+
<version>${mybatis-plus.version}</version>
120+
</dependency>
121+
<dependency>
122+
<groupId>mysql</groupId>
123+
<artifactId>mysql-connector-java</artifactId>
124+
<scope>runtime</scope>
125+
</dependency>
126+
<dependency>
127+
<groupId>com.oracle</groupId>
128+
<artifactId>ojdbc6</artifactId>
129+
<version>${ojdbc6.version}</version>
130+
</dependency>
131+
<dependency>
132+
<groupId>com.microsoft.sqlserver</groupId>
133+
<artifactId>sqljdbc4</artifactId>
134+
<version>${sqlserver.version}</version>
135+
<scope>runtime</scope>
136+
</dependency>
137+
<dependency>
138+
<groupId>com.github.xiaoymin</groupId>
139+
<artifactId>knife4j-spring-boot-starter</artifactId>
140+
<version>${knife4j.version}</version>
141+
</dependency>
142+
<dependency>
143+
<groupId>commons-lang</groupId>
144+
<artifactId>commons-lang</artifactId>
145+
<version>${commons.lang.version}</version>
146+
</dependency>
147+
<dependency>
148+
<groupId>commons-io</groupId>
149+
<artifactId>commons-io</artifactId>
150+
<version>${commons.io.version}</version>
151+
</dependency>
152+
<dependency>
153+
<groupId>commons-configuration</groupId>
154+
<artifactId>commons-configuration</artifactId>
155+
<version>${commons.configuration.version}</version>
156+
</dependency>
157+
<dependency>
158+
<artifactId>velocity</artifactId>
159+
<groupId>org.apache.velocity</groupId>
160+
<version>${velocity.version}</version>
161+
</dependency>
162+
<dependency>
163+
<groupId>org.quartz-scheduler</groupId>
164+
<artifactId>quartz</artifactId>
165+
<version>${quartz.version}</version>
166+
<exclusions>
167+
<exclusion>
168+
<groupId>com.mchange</groupId>
169+
<artifactId>c3p0</artifactId>
170+
</exclusion>
171+
<exclusion>
172+
<groupId>com.zaxxer</groupId>
173+
<artifactId>HikariCP-java6</artifactId>
174+
</exclusion>
175+
</exclusions>
176+
</dependency>
177+
<dependency>
178+
<groupId>com.github.whvcse</groupId>
179+
<artifactId>easy-captcha</artifactId>
180+
<version>${easy-captcha.version}</version>
181+
</dependency>
182+
</dependencies>
183+
184+
<build>
185+
<finalName>manager</finalName>
186+
<plugins>
187+
<plugin>
188+
<groupId>org.springframework.boot</groupId>
189+
<artifactId>spring-boot-maven-plugin</artifactId>
190+
<configuration>
191+
<fork>true</fork>
192+
</configuration>
193+
</plugin>
194+
</plugins>
195+
</build>
196+
197+
<repositories>
198+
<repository>
199+
<id>aliyun-repos</id>
200+
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
201+
<snapshots>
202+
<enabled>false</enabled>
203+
</snapshots>
204+
</repository>
205+
</repositories>
206+
207+
<pluginRepositories>
208+
<pluginRepository>
209+
<id>aliyun-plugin</id>
210+
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
211+
<snapshots>
212+
<enabled>false</enabled>
213+
</snapshots>
214+
</pluginRepository>
215+
</pluginRepositories>
216+
</project>

jun_springboot_common/src/main/java/com/jun/plugin/common/config/Global.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static String getName()
8787
*/
8888
public static String getVersion()
8989
{
90-
return StringUtils.nvl(getConfig("royal.version"), "3.0.0");
90+
return StringUtils.nvl(getConfig("plugin.version"), "3.0.0");
9191
}
9292

9393
/**

jun_springboot_framework/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,21 +94,21 @@
9494
<dependency>
9595
<groupId>com.jun.plugin</groupId>
9696
<artifactId>jun_springboot_system</artifactId>
97-
<version>${royal.version}</version>
97+
<version>${plugin.version}</version>
9898
</dependency>
9999

100100
<!-- 定时任务-->
101101
<dependency>
102102
<groupId>com.jun.plugin</groupId>
103103
<artifactId>jun_springboot_quartz</artifactId>
104-
<version>${royal.version}</version>
104+
<version>${plugin.version}</version>
105105
</dependency>
106106

107107
<!-- 代码生成-->
108108
<dependency>
109109
<groupId>com.jun.plugin</groupId>
110110
<artifactId>jun_springboot_generator</artifactId>
111-
<version>${royal.version}</version>
111+
<version>${plugin.version}</version>
112112
</dependency>
113113

114114
<!-- pagehelper 分页插件 -->

jun_springboot_generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.jun.plugin</groupId>
3434
<artifactId>jun_springboot_common</artifactId>
35-
<version>${royal.version}</version>
35+
<version>${plugin.version}</version>
3636
</dependency>
3737
</dependencies>
3838

jun_springboot_quartz/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>com.jun.plugin</groupId>
3535
<artifactId>jun_springboot_common</artifactId>
36-
<version>${royal.version}</version>
36+
<version>${plugin.version}</version>
3737
</dependency>
3838

3939
</dependencies>

jun_springboot_rbac/pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
web服务入口
1515
</description>
1616

17+
<properties>
18+
<java.version>1.8</java.version>
19+
<plugin.version>1.0</plugin.version>
20+
</properties>
1721

1822
<dependencies>
1923

@@ -42,7 +46,7 @@
4246
<dependency>
4347
<groupId>com.jun.plugin</groupId>
4448
<artifactId>jun_springboot_framework</artifactId>
45-
<version>${royal.version}</version>
49+
<version>${plugin.version}</version>
4650
</dependency>
4751
<!-- oss -->
4852
<dependency>
@@ -77,8 +81,7 @@
7781
<dependency>
7882
<groupId>com.google.code.gson</groupId>
7983
<artifactId>gson</artifactId>
80-
<version>2.8.5</version>
81-
</dependency>
84+
</dependency>
8285

8386
</dependencies>
8487

jun_springboot_rbac/src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Application Version: ${royal.version}
1+
Application Version: ${plugin.version}
22
Spring Boot Version: ${spring-boot.version}
33
////////////////////////////////////////////////////////////////////
44
// _ooOoo_ //

0 commit comments

Comments
 (0)