소스 검색

Fix Gradle build to use bootJar

Greg Turnquist 7 년 전
부모
커밋
3c57a1160c
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      complete/build.gradle
  2. 1 1
      initial/build.gradle

+ 1 - 1
complete/build.gradle

@@ -12,7 +12,7 @@ apply plugin: 'eclipse'
 apply plugin: 'org.springframework.boot'
 apply plugin: 'io.spring.dependency-management'
 
-jar {
+bootJar {
     baseName = 'gs-messaging-stomp-websocket'
     version = '0.1.0'
 }

+ 1 - 1
initial/build.gradle

@@ -12,7 +12,7 @@ apply plugin: 'eclipse'
 apply plugin: 'org.springframework.boot'
 apply plugin: 'io.spring.dependency-management'
 
-jar {
+bootJar {
     baseName = 'gs-messaging-stomp-websocket'
     version =  '0.1.0'
 }