Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
is-simon committed Jan 18, 2019
1 parent bab3340 commit 2517d02
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 30 deletions.
14 changes: 1 addition & 13 deletions build.gradle
Expand Up @@ -250,16 +250,4 @@ task printConfigurations {
}
}

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Install a wrapper in the current projet (gradlew)
// Latest version -> https://gradle.org/install/
task wrapper(type: Wrapper) {
description = 'Generates gradlew[.bat] scripts'
group = "wrapper"

gradleVersion = '4.5'
}

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 changes: 10 additions & 10 deletions dependencies.gradle
Expand Up @@ -9,19 +9,19 @@ ext {
// Gradle plugins version
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Latest version -> https://sourceforge.net/projects/checkstyle/files/checkstyle
checkstyle_version : '8.14',
checkstyle_version : '8.16',
// Latest version -> https://plugins.gradle.org/plugin/com.github.kt3k.coveralls
coveralls_version : '2.8.2',
// Latest version -> http://www.eclemma.org/jacoco
jacoco_version : '0.8.2',
// Latest version -> https://plugins.gradle.org/plugin/nebula.integtest
nebula_project_version : '5.1.2',
nebula_project_version : '5.2.1',
// Latest version -> https://plugins.gradle.org/plugin/io.codearte.nexus-staging
nexus_staging_version : '0.12.0',
nexus_staging_version : '0.20.0',
// Latest version -> https://pmd.github.io
pmd_version : '6.9.0',
pmd_version : '6.10.0',
// Latest version -> https://plugins.gradle.org/plugin/com.diffplug.gradle.spotless
spotless_version : '3.15.0',
spotless_version : '3.16.0',
// Latest version -> https://plugins.gradle.org/plugin/io.spring.dependency-management
dependency_management_version : '1.0.6.RELEASE',

Expand All @@ -34,32 +34,32 @@ ext {
// Latest version -> https://mvnrepository.com/artifact/commons-cli/commons-cli
commons_cli_version : '1.4',
// Latest version -> https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload
commons_fileupload_version : '1.3.3',
commons_fileupload_version : '1.4',
// Latest version -> https://mvnrepository.com/artifact/commons-io/commons-io
commons_io_version : '2.6',
// Latest version -> https://mvnrepository.com/artifact/org.libreoffice
libre_office_version : '5.4.2',
// Latest version -> https://mvnrepository.com/artifact/org.openoffice
open_office_version : '4.1.2',
// Latest version -> https://mvnrepository.com/artifact/org.springframework.boot/spring-boot
spring_boot_version : '2.0.6.RELEASE',
spring_boot_version : '2.1.2.RELEASE',

// Test
// ~~~~~~~~~~~~~~~~~~~~~~~~~~
// Latest version -> https://mvnrepository.com/artifact/nl.jqno.equalsverifier/equalsverifier
equalsverifier_version : '3.0',
equalsverifier_version : '3.1.4',
// Latest version -> https://mvnrepository.com/artifact/com.google.code.findbugs/findbugs
findbugs_version : '3.0.1',
// Latest version -> https://mvnrepository.com/artifact/org.mockito/mockito-core
// 2.9.0 is the latest version compatible powermock version 1.7.3 so we must
// 2.9.0 is the latest version compatible powermock version 1.7.4 so we must
// override the version provided by spring boot (see gradle/java-projects.gradle).
// See https://stackoverflow.com/questions/47240116/mockito-and-powermockito-error
mockito_version : '2.9.0',
// mockito_version : '2.13.1',
// Latest version -> https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito
powermock_version : '1.7.4',
// Latest version -> https://mvnrepository.com/artifact/com.github.tomakehurst/wiremock
wiremock_version : '2.19.0'
wiremock_version : '2.20.0'
]

gradlePlugins = [
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-bin.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
4 changes: 2 additions & 2 deletions jodconverter-samples/jodconverter-sample-rest/build.gradle
Expand Up @@ -3,8 +3,8 @@ description = 'JODConverter - Sample Rest Web Api'
buildscript {
ext {
// Latest version -> https://mvnrepository.com/artifact/org.springframework.boot/spring-boot
springBootVersion = '2.0.5.RELEASE'
swaggerVersion = '2.8.0'
springBootVersion = '2.1.2.RELEASE'
swaggerVersion = '2.9.2'
}
repositories {
mavenCentral()
Expand Down
Expand Up @@ -3,7 +3,7 @@ description = 'JODConverter - Sample Spring Boot Web Application'
buildscript {
ext {
// Latest version -> https://mvnrepository.com/artifact/org.springframework.boot/spring-boot
springBootVersion = '2.0.5.RELEASE'
springBootVersion = '2.1.2.RELEASE'
}
repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions jodconverter-samples/jodconverter-sample-webapp/build.gradle
Expand Up @@ -3,7 +3,7 @@ description = 'JODConverter - Sample Web Application'
buildscript {
ext {
// Latest version https://plugins.gradle.org/plugin/com.bmuschko.tomcat
gradleTomcatVersion = '2.4.1'
gradleTomcatVersion = '2.5'
}
repositories {
mavenCentral()
Expand All @@ -26,7 +26,7 @@ repositories {

ext {
// Latets version: https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core
tomcatVersion = '9.0.1'
tomcatVersion = '9.0.14'
}

dependencies {
Expand Down

0 comments on commit 2517d02

Please sign in to comment.