Server/build.gradle
Woah 439b2e9ef8 Converted some of the management server to kotlin
Added json configs for management server
Cleaned up some files
2021-03-08 03:55:45 -05:00

33 lines
No EOL
746 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
id 'com.github.johnrengelman.shadow' version '6.0.0'
}
allprojects {
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'com.github.johnrengelman.shadow'
group = 'org.2009scape'
version = '1.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
}