From 357d704aec6ae587408f9acd63763c569e05972c Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sun, 2 Feb 2020 19:33:40 +0100 Subject: [PATCH] clean up version specifier --- compiler/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/build.gradle b/compiler/build.gradle index 03b63b169..ff2e170f4 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -1,11 +1,11 @@ buildscript { dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61" } } plugins { - // id "org.jetbrains.kotlin.jvm" version $kotlinVersion + // id "org.jetbrains.kotlin.jvm" version "1.3.61" id 'application' id 'org.jetbrains.dokka' version "0.9.18" id 'com.github.johnrengelman.shadow' version '5.1.0' @@ -29,13 +29,13 @@ def prog8version = rootProject.file('compiler/res/version.txt').text.trim() dependencies { implementation project(':parser') - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" - // implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" + // implementation "org.jetbrains.kotlin:kotlin-reflect" implementation 'org.antlr:antlr4-runtime:4.7.2' implementation 'org.jetbrains.kotlinx:kotlinx-cli-jvm:0.1.0-dev-5' implementation project(':parser') - testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion" + testImplementation "org.jetbrains.kotlin:kotlin-test-junit5" testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2' testImplementation 'org.hamcrest:hamcrest-junit:2.0.0.0' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.2'