forked from micronaut-projects/micronaut-security
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (24 loc) · 966 Bytes
/
Copy pathbuild.gradle
File metadata and controls
29 lines (24 loc) · 966 Bytes
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
ext {
jpasetoVersion = '0.7.0'
bouncyCastleVersion = '1.69'
}
dependencies {
api "io.micronaut:micronaut-http"
api "io.micronaut:micronaut-http-server"
api project(":security")
api "dev.paseto:jpaseto-api:$jpasetoVersion"
implementation "io.projectreactor:reactor-core"
testImplementation "io.micronaut:micronaut-http-client"
testAnnotationProcessor "io.micronaut:micronaut-inject-java"
testImplementation "io.micronaut:micronaut-http-server-netty"
testImplementation project(":test-suite-utils")
testImplementation project(":test-suite-utils-security")
testRuntimeOnly "dev.paseto:jpaseto-impl:$jpasetoVersion"
testRuntimeOnly "dev.paseto:jpaseto-jackson:$jpasetoVersion"
testRuntimeOnly "dev.paseto:jpaseto-bouncy-castle:$jpasetoVersion"
}
apply from: "${rootProject.projectDir}/gradle/testVerbose.gradle"
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}