updated all parser & updated build.gradle

this is the first work to get tcor fully workin
This commit is contained in:
2019-03-11 20:12:49 +01:00
parent 0430330801
commit ace2cb1e39
11 changed files with 381 additions and 157 deletions

View File

@ -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'