gc-opencommand-plugin/build.gradle
jie65535 062187d1c1 Update version to dev-1.1.0
Support gc-dev-1.1.2
Fix token expired but not deleted bug
2022-05-14 13:30:13 +08:00

24 lines
340 B
Groovy

plugins {
id 'java'
id 'idea'
}
group 'com.github.jie65535.opencommand'
version 'dev-1.1.0'
sourceCompatibility = 17
targetCompatibility = 17
repositories {
mavenCentral()
}
dependencies {
implementation fileTree(dir: 'lib', include: ['*.jar'])
}
jar {
jar.baseName = 'opencommand'
destinationDir = file(".")
}