mirror of
https://github.com/irmen/prog8.git
synced 2024-11-19 11:32:17 +00:00
gradle
This commit is contained in:
parent
52352d9d04
commit
c265625ed1
@ -1,5 +1,5 @@
|
||||
plugins {
|
||||
id "org.jetbrains.kotlin.jvm" version "1.3.20"
|
||||
id "org.jetbrains.kotlin.jvm" version "1.3.21"
|
||||
id 'application'
|
||||
}
|
||||
|
||||
@ -8,11 +8,12 @@ repositories {
|
||||
jcenter()
|
||||
}
|
||||
|
||||
def kotlinVersion = '1.3.20'
|
||||
def kotlinVersion = '1.3.21'
|
||||
|
||||
dependencies {
|
||||
implementation project(':parser')
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
|
||||
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
|
||||
runtime "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
|
||||
|
||||
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion"
|
||||
@ -65,4 +66,4 @@ task fatJar(type: Jar) {
|
||||
from { project.configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
|
||||
with jar
|
||||
}
|
||||
// build.finalizedBy(fatJar)
|
||||
// build.finalizedBy(fatJar)
|
||||
|
Loading…
Reference in New Issue
Block a user