Czar
11/27/2018, 7:50 PM./gradlew clean classes --parallel
takes about 1.5 minutes on my machine, with gradle 5.0, same command, same project, same machine - about 12 minutes... I thought gradle 5.0 was supposed to be faster 😄
Seems like most time is spent on dependencies resolution. Are there any known problems with that? Especially when using Spring dependency-management plugin?suresh
11/27/2018, 8:21 PMSpring dependency-management
plugin in 5.0? Can’t implementation(enforcedPlatform())
work for springboot apps?octylFractal
11/27/2018, 11:01 PMartem_zin
11/28/2018, 2:14 AMCzar
11/28/2018, 12:21 PMimplementation(enforcedPlatform())
is not doing same things as Spring's plugin, but I'll try it at some point.
As for latency, I don't see how it would, it's same network and all deps are already cached.artem_zin
11/28/2018, 4:58 PMCzar
11/29/2018, 7:21 AMartem_zin
11/29/2018, 5:19 PMCzar
11/29/2018, 5:27 PMCzar
11/30/2018, 11:06 AMsystemProp.org.gradle.internal.repository.max.tentatives=1
and through "Gradle VM options" in IntelliJ settings: -Dorg.gradle.internal.repository.max.tentatives=1
octylFractal
11/30/2018, 6:21 PMoctylFractal
11/30/2018, 6:21 PM-D<key>=<value>
like on CLIoctylFractal
11/30/2018, 6:22 PMCzar
11/30/2018, 6:47 PM-D
, only missed it when copy-pasting here. Doesn't work.