From c0f01b977386766352dd01d116c9f80b9f683ebe Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Mon, 15 Jul 2019 13:44:08 +0200 Subject: [PATCH] [java-decompiler] fixes versions of test dependencies to make one stupid AI happy (TPV-2349) GitOrigin-RevId: abc48a40d5911f2a37bf6c6ca35ed230d5f014ac --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index e6483db..9694117 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,4 @@ +// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. apply plugin: 'java' compileJava { @@ -12,8 +13,8 @@ sourceSets { repositories { jcenter() } dependencies { - testCompile 'junit:junit:4.+' - testCompile 'org.assertj:assertj-core:3.+' + testCompile 'junit:junit:4.12' + testCompile 'org.assertj:assertj-core:3.12.2' } jar {