We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f106ac commit e17e433Copy full SHA for e17e433
sandbox/libs/analytics-framework/build.gradle
@@ -16,6 +16,9 @@ def calciteVersion = '1.41.0'
16
17
dependencies {
18
api "org.apache.calcite:calcite-core:${calciteVersion}"
19
+ // Calcite's bytecode contains @API(status=INTERNAL) annotations from apiguardian.
20
+ // Without this, javadoc warns "unknown enum constant Status.INTERNAL" and -Xwerror fails.
21
+ compileOnly 'org.apiguardian:apiguardian-api:1.1.2'
22
}
23
24
testingConventions.enabled = false
0 commit comments