Merge remote-tracking branch 'upstream/release-bundle-distribution' into release-bundle-distribution-for-commercial

This commit is contained in:
Ryan Baxter
2024-06-06 10:45:28 -04:00
3 changed files with 1 additions and 3 deletions

View File

@@ -470,5 +470,4 @@ public class Releaser {
.unstable(new BuildUnstableException("Failed to distribute a release train source bundle", ex));
}
}
}

View File

@@ -50,6 +50,7 @@ public class ReleaseBundleCreator {
private final ObjectMapper objectMapper;
public ReleaseBundleCreator(ReleaserProperties properties) {
log.info("Creating Artifactory client with URL [{}]", properties.getBundles().getRepoUrl());
log.info("Creating Artifactory client with username [{}]", properties.getBundles().getRepoUsername());
@@ -166,7 +167,6 @@ public class ReleaseBundleCreator {
Map<String, Object> output = Collections.singletonMap("output", "spring-enterprise/$1");
List<Map<String, Object>> mappingsArray = Arrays.asList(input, output);
return Collections.singletonMap("mappings", mappingsArray);
}
}

View File

@@ -112,5 +112,4 @@ class PostReleaseTasksConfiguration {
DistributeReleaseBundleTask distributeReleaseBundleTask(Releaser releaser) {
return new DistributeReleaseBundleTask(releaser);
}
}