Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions lib/sdk/server-ai/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ ext.versions = [
// The *lowest* version of the base SDK we are compatible with. LDClientInterface
// appears in this library's public signature, so it is exposed as an `api` dependency.
"sdk": "7.14.0"
// NOTE: a Mustache templating dependency (for AI Config message/instruction interpolation)
// will be added in a later step once it has been fully audited (license / maintenance /
// transitive deps). See AIC-2662.
// NOTE: the Mustache templating engine (for AI Config message/instruction interpolation) is
// intentionally not declared here. Per the SDK team's supply-chain guidance we will not link the
// external com.samskivert:jmustache artifact; the library will be vendored (source copied into an
// internal, relocated package) along with the Interpolator in AIC-2695, which must land before the
// v1.0 release (AIC-2666).
]

ext.libraries = [:]
Expand All @@ -74,11 +76,6 @@ java {
javadoc {
// exclude internal implementation classes from the published API documentation
exclude internalPackageGlob
// The foundation module (AIC-2661) intentionally ships no public types yet, only
// package-info.java. The javadoc tool reports "No public or protected classes found to
// document" in that state, so we tolerate it here. TODO(AIC-2662): set failOnError = true
// once the data-model public types land.
failOnError = false
options {
// suppress noisy "no comment" warnings; checkstyle enforces Javadoc on the public surface
addStringOption('Xdoclint:all,-missing', '-quiet')
Expand Down
5 changes: 0 additions & 5 deletions lib/sdk/server-ai/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
#x-release-please-start-version
version=0.1.0
#x-release-please-end

# The following empty ossrh properties are used by LaunchDarkly's internal integration testing framework
# and should not be needed for typical development purposes (including by third-party developers).
sonatypeUsername=
sonatypePassword=
Loading
Loading