From bae725484d7e851958f0e95be7c8329a0708f7de Mon Sep 17 00:00:00 2001 From: inter6 Date: Wed, 22 Feb 2017 22:34:41 +0900 Subject: [PATCH] Upgrade dependencies --- .gitignore | 1 + build.gradle | 38 +++++++++++++++++++------------------- 2 files changed, 20 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 32955e4..f1a5b05 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /.settings /.classpath /.project +/classes # Intellij /.idea diff --git a/build.gradle b/build.gradle index 84f761c..148b42a 100644 --- a/build.gradle +++ b/build.gradle @@ -3,12 +3,14 @@ buildscript { mavenCentral() } dependencies { - classpath('org.springframework.boot:spring-boot-gradle-plugin:1.3.0.RELEASE') + classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.1.RELEASE") } } apply plugin: 'java' -apply plugin: 'spring-boot' +apply plugin: 'eclipse' +apply plugin: 'idea' +apply plugin: 'org.springframework.boot' jar { baseName = 'smtp-sender' @@ -23,22 +25,20 @@ sourceCompatibility = 1.7 targetCompatibility = 1.7 dependencies { - compile('org.springframework.boot:spring-boot-starter') - compile('org.springframework.boot:spring-boot-starter-mail') - compile('org.springframework.boot:spring-boot-starter-test') - compile('com.google.code.gson:gson') + compile 'org.springframework.boot:spring-boot-starter' + compile 'org.springframework.boot:spring-boot-starter-mail' + compile 'org.springframework.boot:spring-boot-starter-test' - compile('org.projectlombok:lombok:1.16.6') - compile('org.apache.commons:commons-lang3:3.4') - compile('org.apache.commons:commons-collections4:4.1') - compile('commons-io:commons-io:2.4') - compile('commons-configuration:commons-configuration:1.10') - compile('commons-codec:commons-codec:1.10') - compile('commons-net:commons-net:3.3') - compile('dnsjava:dnsjava:2.1.7') - compile('com.jcraft:jsch:0.1.53') -} + compile 'com.google.code.gson:gson' + compile 'org.projectlombok:lombok' + compile 'org.apache.commons:commons-lang3:3.5' + compile 'org.apache.commons:commons-collections4:4.1' + compile 'commons-io:commons-io:2.5' + compile 'commons-configuration:commons-configuration:1.10' + compile 'commons-codec:commons-codec' + compile 'commons-net:commons-net:3.5' + compile 'dnsjava:dnsjava:2.1.8' + compile 'com.jcraft:jsch:0.1.54' -task wrapper(type: Wrapper) { - gradleVersion = '2.3' -} \ No newline at end of file + testCompile "junit:junit" +}