git-by-a-truck/build.gradle

34 lines
1.1 KiB
Groovy
Raw Normal View History

2020-06-17 19:22:19 -04:00
plugins {
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
2020-07-03 17:50:47 -04:00
id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlinVersion"
2020-06-17 19:22:19 -04:00
id 'application'
}
version = '0.1.1'
2020-06-17 19:38:20 -04:00
mainClassName = 'me.msoucy.gbat.MainKt'
2020-07-03 11:53:10 -04:00
description = 'Git By A Truck'
2020-06-17 19:22:19 -04:00
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
2020-06-21 17:25:38 -04:00
jcenter()
2020-06-17 19:22:19 -04:00
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
2020-08-18 21:24:24 -04:00
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
2020-07-03 11:53:10 -04:00
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
2020-06-21 17:25:38 -04:00
implementation "com.xenomachina:kotlin-argparser:$kotlin_argparser_version"
2020-07-03 12:01:52 -04:00
implementation "org.jetbrains.exposed:exposed-core:$kotlin_exposed_version"
implementation "org.jetbrains.exposed:exposed-dao:$kotlin_exposed_version"
implementation "org.jetbrains.exposed:exposed-jdbc:$kotlin_exposed_version"
implementation "org.xerial:sqlite-jdbc:3.30.1"
2020-07-03 17:50:47 -04:00
implementation 'com.google.code.gson:gson:2.8.6'
2020-08-18 21:24:24 -04:00
implementation 'org.python:jython-standalone:2.7.2'
implementation 'org.pygments:pygments:2.5.2'
2020-06-17 19:22:19 -04:00
testImplementation 'junit:junit:4.12'
}