Add oauth2 client

This commit is contained in:
Guilherme Werner 2023-12-01 20:33:43 -03:00
parent 61c562b63d
commit 92ea35896f
12 changed files with 124 additions and 56 deletions

26
lib/build.gradle Normal file
View file

@ -0,0 +1,26 @@
plugins {
id "java-library"
}
version = "0.0.4"
archivesBaseName = "tribufu"
repositories {
mavenCentral()
}
dependencies {
api "org.apache.commons:commons-math3:3.6.1"
implementation "com.google.guava:guava:31.1-jre"
testImplementation "org.junit.jupiter:junit-jupiter:5.9.1"
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
tasks.named("test") {
useJUnitPlatform()
}