GCAuth-OAuth/build.gradle

32 lines
414 B
Groovy
Raw Normal View History

2022-05-13 16:45:58 +00:00
buildscript {
}
plugins {
id 'java'
}
sourceCompatibility = 17
targetCompatibility = 17
group 'com.xtaolabs.gcauth_oauth'
version '1.2.0'
2022-05-13 16:45:58 +00:00
repositories {
mavenCentral()
}
dependencies {
2022-07-10 03:48:17 +00:00
implementation files('lib/grasscutter-1.2.2-dev.jar')
implementation files('lib/gcauth-2.4.0.jar')
2022-05-13 16:45:58 +00:00
}
test {
useJUnitPlatform()
}
jar{
jar.baseName = 'gcauth_oauth'
destinationDir = file(".")
}