diff options
author | Marvin Borner | 2020-07-09 22:33:43 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-09 22:33:43 +0200 |
commit | 1edfdf5f3a316a36108a0a853b0a2553d116d6fc (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /build.gradle | |
parent | 18edde9bd3603f3f867cebce100e7b22be9012cd (diff) |
Rewriiiiiiiiiite!
Okay, okay. I know, rewriting projects all the time is dumb.
Buuut, we really don't want to work with our old and ugly code anymore.
Furthermore we'll be using Deno now!
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/build.gradle b/build.gradle deleted file mode 100644 index 4116a3e..0000000 --- a/build.gradle +++ /dev/null @@ -1,60 +0,0 @@ -buildscript { - repositories { - mavenCentral() - } - dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin" - } -} - -plugins { - id 'org.jetbrains.kotlin.jvm' version '1.3.11' - id 'nu.studer.rocker' version '0.4' - id 'com.github.johnrengelman.shadow' version '5.0.0' - id 'java' -} - -group "space.anity" -version "1.0" - -apply plugin: 'java' -apply plugin: 'kotlin' -apply plugin: 'application' -apply plugin: 'com.github.johnrengelman.shadow' -jar.enabled = false -mainClassName = 'space.anity.AppKt' - -shadowJar { - baseName = 'kloud' -} - -repositories { - jcenter() -} - -rocker { - main { - optimize = false - templateDir = file('src/main/resources/views') - outputDir = file('src/main/resources/generated-views') - classDir = file('src/main/resources/compiled-views') - } -} - -dependencies { - compile "io.javalin:javalin:2.8.0" - compile "com.fasterxml.jackson.core:jackson-databind:2.9.8" - compile 'org.jetbrains.exposed:exposed:0.13.2' - compile "org.xerial:sqlite-jdbc:3.21.0.1" - compile group: 'com.fizzed', name: 'rocker-compiler', version: '1.2.1' - compile group: 'at.favre.lib', name: 'bcrypt', version: '0.7.0' - compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3' -} - -compileKotlin { - kotlinOptions.jvmTarget = "1.8" -} - -compileTestKotlin { - kotlinOptions.jvmTarget = "1.8" -} |