mirror of
https://github.com/jie65535/gc-openchat-plugin.git
synced 2025-06-01 17:29:11 +08:00
20 lines
269 B
Groovy
20 lines
269 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'com.github.jie65535.openchat'
|
|
version 'dev-0.1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'lib', include: ['*.jar'])
|
|
}
|
|
|
|
jar {
|
|
jar.baseName = 'openchat'
|
|
|
|
destinationDir = file(".")
|
|
} |