Parcourir la source

Fix Gradle build to use bootJar

Greg Turnquist il y a 7 ans
Parent
commit
3c57a1160c
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  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'
 }