mirror of
https://github.com/jie65535/gc-opencommand-plugin.git
synced 2025-06-02 17:49:12 +08:00
24 lines
340 B
Groovy
24 lines
340 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'idea'
|
|
}
|
|
|
|
group 'com.github.jie65535.opencommand'
|
|
version 'dev-1.4.0'
|
|
|
|
sourceCompatibility = 17
|
|
targetCompatibility = 17
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'lib', include: ['*.jar'])
|
|
}
|
|
|
|
jar {
|
|
jar.baseName = 'opencommand'
|
|
|
|
destinationDir = file(".")
|
|
} |