Index: build.gradle =================================================================== diff -u -rbe4f46239a7258e822029151273ffeb0796cd7f2 -rd33470b2ee5d85413d252f82ab8919e8178eb44a --- build.gradle (.../build.gradle) (revision be4f46239a7258e822029151273ffeb0796cd7f2) +++ build.gradle (.../build.gradle) (revision d33470b2ee5d85413d252f82ab8919e8178eb44a) @@ -28,6 +28,7 @@ maven { url 'https://workhorse.lemanscorp.com/nexus/repository/public/' } } + dependencies { implementation 'org.springframework.boot:spring-boot-starter-jdbc' implementation 'org.springframework.boot:spring-boot-starter-web' @@ -49,7 +50,7 @@ implementation "ch.qos.logback:logback-core" implementation "ch.qos.logback:logback-classic" - implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.2' + implementation 'com.fasterxml.jackson.core:jackson-databind' implementation 'org.apache.httpcomponents:httpmime:4.5.5' implementation 'org.apache.httpcomponents:httpclient:4.5.5' @@ -59,32 +60,21 @@ implementation 'org.spockframework:spock-spring:2.0-M2-groovy-2.5' - implementation 'com.lemans.boot.common:lemans-testing:0.0.2' - implementation 'com.lemans.boot.common:lemans-security:0.0.2' - implementation 'com.lemans.boot.common:lemans-rest:0.0.2' - implementation 'com.lemans.boot.common:lemans-core:0.0.2' - implementation 'com.lemans.boot.common:lemans-gradle:0.0.2' + implementation 'com.lemans.boot.common:lemans-testing:0.0.1t' + implementation 'com.lemans.boot.common:lemans-security:0.0.1t' + implementation 'com.lemans.boot.common:lemans-rest:0.0.1t' + implementation 'com.lemans.boot.common:lemans-core:0.0.1t' + implementation 'com.lemans.boot.common:lemans-gradle:0.0.1t' implementation group: 'commons-dbcp', name: 'commons-dbcp', version: '1.4' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' compile group: 'com.opencsv', name: 'opencsv', version: '3.3' compile group: 'org.json', name: 'json', version: '20090211' - compile group: 'javax.mail', name: 'mail', version: '1.4.1' - compile 'dumbster:dumbster:1.6' - compile 'javax.mail:mail:1.4.5' - - compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '1.2.0.RELEASE' - implementation group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.94' - - implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' - implementation 'org.springframework.security:spring-security-oauth2-client' - implementation 'org.springframework.security:spring-security-oauth2-jose' - implementation 'org.springframework.security:spring-security-oauth2-core' - testImplementation 'org.springframework.boot:spring-boot-starter-test' - implementation 'org.springframework.boot:spring-boot-starter-webflux' - + compile group: 'org.apache.tika', name: 'tika-core', version: '1.4' + compile 'commons-fileupload:commons-fileupload:1.3.1' + compile 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.2' } test { @@ -103,6 +93,6 @@ } codenarc { - toolVersion = '1.0' configFile = file("${project.projectDir}/codenarc/rules.groovy") } +