-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (38 loc) · 1.4 KB
/
build.gradle
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
41
42
plugins {
id 'java-library'
id("io.freefair.lombok") version "8.0.0"
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
repositories {
mavenLocal()
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/pagopa/eng-http-signatures")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
}
}
}
dependencies {
implementation(project(':core')) {
exclude group: 'ch.qos.logback', module: 'logback-classic'
exclude group: 'ch.qos.logback', module: 'logback-core'
}
implementation 'javax.servlet:javax.servlet-api:3.1.0'
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation 'ch.qos.logback:logback-core:1.2.11'
testImplementation 'org.springframework.boot:spring-boot-starter-web:2.7.10'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.10'
testImplementation 'org.slf4j:slf4j-api:1.7.36'
testImplementation 'org.mock-server:mockserver-netty:5.15.0'
testImplementation 'org.mockito:mockito-core:5.2.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.2.0'
testImplementation project(':http-verifier')
testImplementation project(':assertion-rest-client-native')
testImplementation project(':identity-service-rest-client-native')
}
tasks.named('test') {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}