Server/build.gradle
2022-04-17 12:54:32 +00:00

33 lines
739 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.rs09'
version = '1.0.0'
sourceCompatibility = 11
targetCompatibility = 11
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 = "11"
}
}
}