The project seems to pickup an older version of commons-beanutils instead of the new one. I am unsure of what went wrong after upgrading the version number of commons-beantuils.
Current configuration
root\build.gradle
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
}
}
apply plugin: 'spring-boot'
allprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'project-report'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile project(":child")
}
root\child\build.gradle
dependencies {
compile 'commons-beanutils:commons-beanutils:1.9.3'
}
root/build/dependencies.txt
\--- project :child
\--- commons-beanutils:commons-beanutils:1.9.3 -> 1.9.2
+--- commons-logging:commons-logging:1.1.1 -> 1.2
\--- commons-collections:commons-collections:3.2.1 -> 3.2.2
root/child/dependencies.txt
default - Configuration for default artifacts.
\--- commons-beanutils:commons-beanutils:1.9.3
+--- commons-logging:commons-logging:1.2
\--- commons-collections:commons-collections:3.2.2
runtime - Runtime dependencies for source set 'main'.
\--- commons-beanutils:commons-beanutils:1.9.3
+--- commons-logging:commons-logging:1.2
\--- commons-collections:commons-collections:3.2.2
Gradle Version: 3.1
Operating System and JVM version: Windows 2008 R2 Enterprise, Oracle Java 1.8.0_92-b14
Is this a regression? If yes, which version of Gradle do you know it last worked for? Unsure
Older configuration:
root\build.gradle
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
}
}
apply plugin: 'spring-boot'
allprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'project-report'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile project(":child")
}
root\child\build.gradle
dependencies {
compile 'commons-beanutils:commons-beanutils:1.9.2'
}