Skip to content

Commit

Permalink
upped dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
xtien committed Feb 3, 2020
1 parent 712e0d5 commit 390ba0c
Showing 1 changed file with 32 additions and 26 deletions.
58 changes: 32 additions & 26 deletions build.gradle
@@ -1,15 +1,15 @@
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.6.RELEASE")
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.4.RELEASE")
}
}

plugins {
id 'java'
// https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+Gradle
id "org.sonarqube" version "2.7"
id 'org.springframework.boot' version '2.2.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id "org.sonarqube" version "2.8"
id 'org.springframework.boot' version '2.2.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
}

apply plugin: 'idea'
Expand All @@ -22,12 +22,22 @@ sourceCompatibility = 11
targetCompatibility = 11

ext {
springVersion = "5.2.1.RELEASE"
springDataVersion = "2.2.1.RELEASE"
springBootVersion = "2.2.1.RELEASE"
dbcp2Version = "2.5.0"
hibernateVersion = "5.4.0.Final"
luceneVersion = "8.4.0"
springVersion = "5.2.3.RELEASE"
springSecurityTestVersion = "5.2.1.RELEASE"
springBootVersion = "2.2.4.RELEASE"
dbcp2Version = "2.7.0"
luceneVersion = "8.4.1"
commonsLoggingVersion = "1.2"
log4jVersion = "1.2.17"
commonsLangVersion = "3.9"
commonsIOVersion = "2.6"
postgresVersion = "42.2.5"
jacksonVersion = "2.10.0"
swaggerVersion = "2.9.2"
junitVersion = "4.12"
h2Version = "1.4.200"
hamcrestVersion = "1.3"

}

repositories {
Expand Down Expand Up @@ -62,31 +72,27 @@ dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: springBootVersion
compile group: 'org.springframework.security', name: 'spring-security-test', version: springVersion
compile group: 'org.springframework.security', name: 'spring-security-test', version: springSecurityTestVersion

compile group: 'commons-logging', name: 'commons-logging', version: '1.1.3'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
compile group: 'commons-io', name: 'commons-io', version: '2.4'
compile group: 'commons-logging', name: 'commons-logging', version: commonsLoggingVersion
compile group: 'log4j', name: 'log4j', version: log4jVersion
compile group: 'org.apache.commons', name: 'commons-lang3', version: commonsLangVersion
compile group: 'commons-io', name: 'commons-io', version: commonsIOVersion
compile group: 'org.apache.commons', name: 'commons-dbcp2', version: dbcp2Version
compile group: 'org.hibernate', name: 'hibernate-core', version: hibernateVersion
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.5'
compile group: 'org.postgresql', name: 'postgresql', version: postgresVersion

compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.10.1'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.1'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jacksonVersion
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jacksonVersion

compile group: 'commons-daemon', name: 'commons-daemon', version: '1.1.0'
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
compile group: 'io.springfox', name: 'springfox-swagger2', version: swaggerVersion

compile group: 'org.apache.lucene', name: 'lucene-core', version: luceneVersion
compile group: 'org.apache.lucene', name: 'lucene-analyzers-common', version: luceneVersion
compile group: 'org.apache.lucene', name: 'lucene-queryparser', version: luceneVersion

compile 'junit:junit:4.12'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'junit', name: 'junit', version: junitVersion
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: springBootVersion
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'com.h2database', name: 'h2', version: '1.4.200'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: hamcrestVersion
testCompile group: 'com.h2database', name: 'h2', version: h2Version

}

0 comments on commit 390ba0c

Please sign in to comment.