Work around compile warnings from Data Neo4j's use of API Guardian
See gh-27170
This commit is contained in:
parent
8540bc0d12
commit
c00e885ac4
|
@ -64,6 +64,7 @@ dependencies {
|
||||||
optional("org.apache.tomcat.embed:tomcat-embed-el")
|
optional("org.apache.tomcat.embed:tomcat-embed-el")
|
||||||
optional("org.apache.tomcat.embed:tomcat-embed-websocket")
|
optional("org.apache.tomcat.embed:tomcat-embed-websocket")
|
||||||
optional("org.apache.tomcat:tomcat-jdbc")
|
optional("org.apache.tomcat:tomcat-jdbc")
|
||||||
|
optional("org.apiguardian:apiguardian-api")
|
||||||
optional("org.codehaus.groovy:groovy-templates")
|
optional("org.codehaus.groovy:groovy-templates")
|
||||||
optional("com.github.ben-manes.caffeine:caffeine")
|
optional("com.github.ben-manes.caffeine:caffeine")
|
||||||
optional("com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute")
|
optional("com.github.mxab.thymeleaf.extras:thymeleaf-extras-data-attribute")
|
||||||
|
|
|
@ -20,6 +20,13 @@ bom {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
library("API Guardian", "1.1.0") {
|
||||||
|
group("org.apiguardian") {
|
||||||
|
modules = [
|
||||||
|
"apiguardian-api"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
library("Commons Compress", "1.20") {
|
library("Commons Compress", "1.20") {
|
||||||
group("org.apache.commons") {
|
group("org.apache.commons") {
|
||||||
modules = [
|
modules = [
|
||||||
|
|
|
@ -7,6 +7,7 @@ description = "Spring Boot Data Neo4j smoke test"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-neo4j"))
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-neo4j"))
|
||||||
|
implementation("org.apiguardian:apiguardian-api")
|
||||||
|
|
||||||
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue