mirror of
https://github.com/Xtao-Labs/GCAuth-OAuth.git
synced 2024-11-21 14:48:24 +00:00
32 lines
414 B
Groovy
32 lines
414 B
Groovy
buildscript {
|
|
|
|
}
|
|
|
|
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
sourceCompatibility = 17
|
|
targetCompatibility = 17
|
|
|
|
group 'com.xtaolabs.gcauth_oauth'
|
|
version '1.2.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation files('lib/grasscutter-1.2.2-dev.jar')
|
|
implementation files('lib/gcauth-2.4.0.jar')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
jar{
|
|
jar.baseName = 'gcauth_oauth'
|
|
destinationDir = file(".")
|
|
}
|