updated all parser & updated build.gradle
this is the first work to get tcor fully workin
This commit is contained in:
31
build.gradle
31
build.gradle
@ -1,9 +1,27 @@
|
||||
plugins {
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.3.0'
|
||||
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.3.21'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath 'org.jsoup:jsoup:1.11.3'
|
||||
}
|
||||
}
|
||||
|
||||
group 'org.mosad.seil0'
|
||||
version '1.0-SNAPSHOT'
|
||||
plugins {
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
|
||||
}
|
||||
|
||||
apply plugin: 'kotlin'
|
||||
apply plugin: 'application'
|
||||
|
||||
application {
|
||||
mainClassName = "org.mosad.thecitadelofricks.MainKt"
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
@ -19,4 +37,7 @@ compileKotlin {
|
||||
}
|
||||
compileTestKotlin {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
|
||||
group 'org.mosad'
|
||||
version '1.0-SNAPSHOT'
|
||||
|
Reference in New Issue
Block a user