gc-opencommand-plugin/build.gradle
2023-09-02 18:39:18 +08:00

24 lines
336 B
Groovy

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