gc-opencommand-plugin/build.gradle
2022-07-26 20:19:03 +08:00

24 lines
340 B
Groovy

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