diff --git a/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java b/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java index d89841e..4b5e01a 100644 --- a/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java +++ b/release-tools/src/main/java/org/springframework/data/release/build/BuildExecutor.java @@ -69,7 +69,7 @@ class BuildExecutor { this.logger = logger; this.mavenProperties = mavenProperties; - if (this.mavenProperties.isParllelize()) { + if (this.mavenProperties.isParallelize()) { int processors = Runtime.getRuntime().availableProcessors(); int parallelity = Math.max(2, (processors / 2)); executor = new ThreadPoolExecutor(parallelity, parallelity, 10, TimeUnit.MINUTES, new ArrayBlockingQueue<>(256)); diff --git a/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java b/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java index 15cce6d..365700d 100644 --- a/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java +++ b/release-tools/src/main/java/org/springframework/data/release/build/MavenProperties.java @@ -41,7 +41,7 @@ class MavenProperties { private File localRepository; private Map plugins; private boolean consoleLogger = true; - private boolean parllelize = false; + private boolean parallelize = false; /** * Configures the local Maven repository location to use. In case the given folder does not already exists it's