mirror of
https://github.com/irmen/prog8.git
synced 2025-01-27 10:31:40 +00:00
gradle
This commit is contained in:
parent
52352d9d04
commit
c265625ed1
@ -1,5 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "org.jetbrains.kotlin.jvm" version "1.3.20"
|
id "org.jetbrains.kotlin.jvm" version "1.3.21"
|
||||||
id 'application'
|
id 'application'
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8,11 +8,12 @@ repositories {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|
||||||
def kotlinVersion = '1.3.20'
|
def kotlinVersion = '1.3.21'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':parser')
|
implementation project(':parser')
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
|
||||||
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
|
||||||
runtime "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
|
runtime "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
|
||||||
|
|
||||||
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:$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) } }
|
from { project.configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
|
||||||
with jar
|
with jar
|
||||||
}
|
}
|
||||||
// build.finalizedBy(fatJar)
|
// build.finalizedBy(fatJar)
|
||||||
|
@ -17,6 +17,5 @@
|
|||||||
</content>
|
</content>
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="inheritedJdk" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
<orderEntry type="library" name="Python 3.7 interpreter library" level="application" />
|
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
Loading…
x
Reference in New Issue
Block a user