summaryrefslogtreecommitdiff
path: root/backend/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'backend/build.gradle')
-rw-r--r--backend/build.gradle12
1 files changed, 3 insertions, 9 deletions
diff --git a/backend/build.gradle b/backend/build.gradle
index 442640dc..68eb3c86 100644
--- a/backend/build.gradle
+++ b/backend/build.gradle
@@ -1,16 +1,10 @@
-buildscript {
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE'
- }
+plugins {
+ id 'org.springframework.boot' version '1.5.3.RELEASE'
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'checkstyle'
-apply plugin: 'org.springframework.boot'
group 'org.luxons'
version '1.0-SNAPSHOT'
@@ -36,7 +30,7 @@ dependencies {
checkstyle {
maxWarnings = 0
- toolVersion = '7.6'
+ toolVersion = '7.7'
}
// packages the frontend app within the jar
bgstack15