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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
name: Get secrets
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/sonatype/username = SONATYPE_USER_NAME,
/production/common/releasing/sonatype/password = SONATYPE_PASSWORD,
ssm_parameter_pairs: '/production/common/releasing/sonatype/central/username = SONATYPE_USER_NAME,
/production/common/releasing/sonatype/central/password = SONATYPE_PASSWORD,
/production/common/releasing/android_code_signing/private_key_id = SIGNING_KEY_ID,
/production/common/releasing/android_code_signing/private_key_passphrase = SIGNING_KEY_PASSPHRASE'
s3_path_pairs: 'launchdarkly-releaser/android/code-signing-keyring.gpg = code-signing-keyring.gpg'
Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ subprojects {
nexusPublishing {
packageGroup = "com.launchdarkly"
repositories {
sonatype()
sonatype{
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,9 @@ public Builder hooks(HooksConfigurationBuilder hooksConfiguration) {
}

/**
* This is an experimental API and may be removed/changed in the future without notice. It is
* marked as deprecated as Java does not have built in support for an experimental annotation.
*
* Sets the SDK's plugins configuration, using a builder. This is normally a obtained from
* <p>
* {@link Components#plugins()} ()}, which has methods for setting individual plugin
Expand All @@ -444,6 +447,7 @@ public Builder hooks(HooksConfigurationBuilder hooksConfiguration) {
* @return the main configuration builder
* @see Components#plugins()
*/
@Deprecated()
public Builder plugins(PluginsConfigurationBuilder pluginsConfiguration) {
this.pluginsConfigurationBuilder = pluginsConfiguration;
return this;
Expand Down