Skip to content

Commit 32aab96

Browse files
authored
Update 80.4 Create an executable JAR with Maven.md
1 parent 16cb49a commit 32aab96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

IX. ‘How-to’ guides/80.4 Create an executable JAR with Maven.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### 80.4 使用Maven创建可执行JAR
22

3-
`spring-boot-maven-plugin`能够用来创建可执行的'胖'JAR。如果你正在使用`spring-boot-starter-parent` POM,你可以简单地声明该插件,然后你的jar将被重新打包:
3+
`spring-boot-maven-plugin`能够用来创建可执行的'胖'JAR。如果正在使用`spring-boot-starter-parent` POM,你可以简单地声明该插件,然后你的jar将被重新打包:
44
```xml
55
<build>
66
<plugins>
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>org.springframework.boot</groupId>
2020
<artifactId>spring-boot-maven-plugin</artifactId>
21-
<version>1.3.0.BUILD-SNAPSHOT</version>
21+
<version>1.4.1.RELEASE</version>
2222
<executions>
2323
<execution>
2424
<goals>
@@ -30,4 +30,4 @@
3030
</plugins>
3131
</build>
3232
```
33-
查看[插件文档](http://docs.spring.io/spring-boot/docs/1.3.0.BUILD-SNAPSHOT/maven-plugin/usage.html)获取详细的用例。
33+
查看[插件文档](http://docs.spring.io/spring-boot/docs/1.4.1.RELEASE/maven-plugin/usage.html)获取详细的用例。

0 commit comments

Comments
 (0)