Skip to content

Commit b9029b8

Browse files
committed
Fix js url pb
1 parent 5d0e0f8 commit b9029b8

File tree

2 files changed

+258
-157
lines changed

2 files changed

+258
-157
lines changed

pom.xml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.jeemv.springboot.vuejs</groupId>
88
<artifactId>springboot-vuejs</artifactId>
9-
<version>1.0.13</version>
9+
<version>1.0.14</version>
1010

1111
<name>springboot-vuejs</name>
1212
<url>https://github.com/jeeMv/SpringBoot-VueJS</url>
@@ -33,8 +33,8 @@
3333
</scm>
3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36-
<maven.compiler.source>1.8</maven.compiler.source>
37-
<maven.compiler.target>1.8</maven.compiler.target>
36+
<maven.compiler.source>14</maven.compiler.source>
37+
<maven.compiler.target>14</maven.compiler.target>
3838
</properties>
3939

4040
<dependencies>
@@ -48,39 +48,39 @@
4848
<dependency>
4949
<groupId>com.fasterxml.jackson.core</groupId>
5050
<artifactId>jackson-core</artifactId>
51-
<version>[2.10.0,)</version>
51+
<version>[2.11.0,)</version>
5252
</dependency>
5353
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
5454
<dependency>
5555
<groupId>com.fasterxml.jackson.core</groupId>
5656
<artifactId>jackson-databind</artifactId>
57-
<version>[2.10.0,)</version>
57+
<version>[2.11.0,)</version>
5858
</dependency>
5959
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
6060
<dependency>
6161
<groupId>org.aspectj</groupId>
6262
<artifactId>aspectjweaver</artifactId>
63-
<version>1.9.4</version>
63+
<version>1.9.6</version>
6464
</dependency>
6565
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
6666
<dependency>
6767
<groupId>org.springframework</groupId>
6868
<artifactId>spring-context</artifactId>
69-
<version>5.2.0.RELEASE</version>
69+
<version>5.2.9.RELEASE</version>
7070
</dependency>
7171

7272
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
7373
<dependency>
7474
<groupId>org.springframework.boot</groupId>
7575
<artifactId>spring-boot-starter-web</artifactId>
76-
<version>2.1.9.RELEASE</version>
76+
<version>2.3.4.RELEASE</version>
7777
</dependency>
7878

7979
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor -->
8080
<dependency>
8181
<groupId>org.springframework.boot</groupId>
8282
<artifactId>spring-boot-configuration-processor</artifactId>
83-
<version>2.1.9.RELEASE</version>
83+
<version>2.3.4.RELEASE</version>
8484
</dependency>
8585

8686
</dependencies>
@@ -99,7 +99,7 @@
9999
<plugin>
100100
<groupId>org.apache.maven.plugins</groupId>
101101
<artifactId>maven-source-plugin</artifactId>
102-
<version>3.0.1</version>
102+
<version>3.2.1</version>
103103
<executions>
104104
<execution>
105105
<id>attach-sources</id>
@@ -112,7 +112,7 @@
112112
<plugin>
113113
<groupId>org.apache.maven.plugins</groupId>
114114
<artifactId>maven-javadoc-plugin</artifactId>
115-
<version>3.0.1</version>
115+
<version>3.2.0</version>
116116
<executions>
117117
<execution>
118118
<id>attach-javadocs</id>
@@ -132,7 +132,7 @@
132132
<plugin>
133133
<groupId>org.sonatype.plugins</groupId>
134134
<artifactId>nexus-staging-maven-plugin</artifactId>
135-
<version>1.6.7</version>
135+
<version>1.6.8</version>
136136
<extensions>true</extensions>
137137
<configuration>
138138
<serverId>ossrh</serverId>
@@ -143,7 +143,7 @@
143143
<plugin>
144144
<groupId>org.apache.maven.plugins</groupId>
145145
<artifactId>maven-gpg-plugin</artifactId>
146-
<version>1.5</version>
146+
<version>1.6</version>
147147
<executions>
148148
<execution>
149149
<id>sign-artifacts</id>
@@ -159,7 +159,7 @@
159159
<plugins>
160160
<plugin>
161161
<artifactId>maven-clean-plugin</artifactId>
162-
<version>3.0.0</version>
162+
<version>3.1.0</version>
163163
</plugin>
164164
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
165165
<!--<plugin>
@@ -168,15 +168,15 @@
168168
</plugin>-->
169169
<plugin>
170170
<artifactId>maven-compiler-plugin</artifactId>
171-
<version>3.7.0</version>
171+
<version>3.8.1</version>
172172
</plugin>
173173
<plugin>
174174
<artifactId>maven-surefire-plugin</artifactId>
175-
<version>2.20.1</version>
175+
<version>2.22.2</version>
176176
</plugin>
177177
<plugin>
178178
<artifactId>maven-jar-plugin</artifactId>
179-
<version>3.0.2</version>
179+
<version>3.2.0</version>
180180
</plugin>
181181
<plugin>
182182
<artifactId>maven-install-plugin</artifactId>

0 commit comments

Comments
 (0)