-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
40 lines (33 loc) · 1.08 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
// Apply the java-library plugin for API and implementation separation.
`java-library`
}
group = "org.orph2020.pst"
version = "0.2-SNAPSHOT"
//TODO would be nice to factor even repositories into build logic
repositories {
mavenCentral()
mavenLocal()
/*
add this repository to pick up the SNAPSHOT version of the IVOA base library - in the future when this
will not be necessary when this library is released as a non-SNAPSHOT version.
*/
maven {
url= uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
java {
withSourcesJar()
}
dependencies {
implementation(platform("org.orph2020.pst.platforms:quarkus-base"))
implementation(platform("org.orph2020.pst.platforms:pst-dm"))
implementation("io.quarkus:quarkus-rest-client-reactive-jackson")
implementation("io.quarkus:quarkus-oidc-client-reactive-filter")
// Use JUnit Jupiter for testing.
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
}
tasks.named<Test>("test") {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}