ソースを参照

Replace jar gradle task with bootJar task

Greg Turnquist 6 年 前
コミット
00e8e46661
コミット者のEメールアドレスに関連付けられたアカウントが存在しません
共有2 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 1
    1
      complete/build.gradle
  2. 1
    1
      initial/build.gradle

+ 1
- 1
complete/build.gradle ファイルの表示

@@ -13,7 +13,7 @@ apply plugin: 'idea'
13 13
 apply plugin: 'org.springframework.boot'
14 14
 apply plugin: 'io.spring.dependency-management'
15 15
 
16
-jar {
16
+bootJar {
17 17
     baseName = 'gs-rest-service'
18 18
     version =  '0.1.0'
19 19
 }

+ 1
- 1
initial/build.gradle ファイルの表示

@@ -13,7 +13,7 @@ apply plugin: 'idea'
13 13
 apply plugin: 'org.springframework.boot'
14 14
 apply plugin: 'io.spring.dependency-management'
15 15
 
16
-jar {
16
+bootJar {
17 17
     baseName = 'gs-rest-service'
18 18
     version =  '0.1.0'
19 19
 }