gc-opencommand-plugin/build.gradle
2022-10-06 13:27:17 +08:00

24 lines
340 B
Groovy

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