mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
1c39f8d9d5
Some checks failed
Dotnet Provisioner Unit Tests / Restore and Run Unit Tests (ubuntu-20.04) (push) Has been cancelled
Dotnet Provisioner Unit Tests / Restore and Run Unit Tests (windows-2022) (push) Has been cancelled
HIRS Build and Unit Test / ACA_Provisioner_Unit_Tests (push) Has been cancelled
HIRS System Tests / DockerTests (push) Has been cancelled
Dotnet Provisioner Unit Tests / Evaluate Tests (push) Has been cancelled
73 lines
1.8 KiB
Groovy
73 lines
1.8 KiB
Groovy
plugins {
|
|
id 'io.spring.dependency-management' version '1.1.2'
|
|
id 'com.google.protobuf' version '0.9.4'
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':HIRS_Utils')
|
|
implementation project(':HIRS_Structs')
|
|
|
|
|
|
implementation libs.bouncycastle
|
|
implementation libs.commons.codec
|
|
implementation libs.commons.io
|
|
implementation libs.commons.lang3
|
|
implementation libs.guava
|
|
implementation libs.jackson.core
|
|
implementation libs.jackson.databind
|
|
implementation libs.jakarta.persistence.api
|
|
implementation libs.jakarta.xml
|
|
implementation libs.spring.boot.starter.log4j2
|
|
implementation libs.minimal.json
|
|
|
|
// pull the pci dependency and ...
|
|
implementation(libs.pci) {
|
|
// explicitly exclude the default apache http client transitive dependency
|
|
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
|
}
|
|
// and explicitly include the patched version of the apache http client dependency
|
|
implementation libs.apacheHttpClient
|
|
|
|
implementation libs.protobuf.java
|
|
implementation libs.spring.boot.starter.data.jpa
|
|
implementation libs.spring.retry
|
|
|
|
// pull the spring-boot-starter-web dependency and ...
|
|
implementation(libs.spring.boot.starter.web)
|
|
|
|
compileOnly libs.lombok
|
|
annotationProcessor libs.lombok
|
|
|
|
compileOnly libs.spotbugs.annotations
|
|
annotationProcessor libs.spotbugs.annotations
|
|
|
|
testImplementation libs.commons.io
|
|
testImplementation libs.spring.boot.starter.test
|
|
|
|
testCompileOnly libs.lombok
|
|
testAnnotationProcessor libs.lombok
|
|
}
|
|
|
|
protobuf {
|
|
protoc {
|
|
artifact = 'com.google.protobuf:protoc:3.24.3'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main {
|
|
proto {
|
|
srcDir '../HIRS_Provisioner.NET/hirs/Resources'
|
|
}
|
|
}
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|