mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 14:57:27 +00:00
Add oauth2 client
This commit is contained in:
parent
61c562b63d
commit
92ea35896f
12 changed files with 124 additions and 56 deletions
26
lib/build.gradle
Normal file
26
lib/build.gradle
Normal 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue