Browse Source

Merge pull request #40770 from PiyalAhmed

* gh-40770:
  Fix typo in variable name

Closes gh-40770
pull/40037/head
Andy Wilkinson 2 years ago
parent
commit
ec966c7e5e
  1. 4
      buildSrc/src/main/java/org/springframework/boot/build/antora/GenerateAntoraPlaybook.java

4
buildSrc/src/main/java/org/springframework/boot/build/antora/GenerateAntoraPlaybook.java

@ -114,9 +114,9 @@ public abstract class GenerateAntoraPlaybook extends DefaultTask { @@ -114,9 +114,9 @@ public abstract class GenerateAntoraPlaybook extends DefaultTask {
String locationName = getProject().getName() + "-${version}-${name}-${classifier}.zip";
Path antoraContent = getRelativeProjectPath()
.resolve(GENERATED_DOCS + "antora-content/" + locationName);
Path antoraDepenencies = getRelativeProjectPath()
Path antoraDependencies = getRelativeProjectPath()
.resolve(GENERATED_DOCS + "antora-dependencies-content/" + locationName);
zipContentsCollector.locations(antoraContent, antoraDepenencies);
zipContentsCollector.locations(antoraContent, antoraDependencies);
zipContentsCollector.alwaysInclude(getAlwaysInclude().getOrNull());
});
extensions.rootComponent((rootComponent) -> rootComponent.name("boot"));

Loading…
Cancel
Save