diff --git a/src/main/java/rife/bld/extension/AbstractBootOperation.java b/src/main/java/rife/bld/extension/AbstractBootOperation.java index 187a4b7..4ffeaf8 100644 --- a/src/main/java/rife/bld/extension/AbstractBootOperation.java +++ b/src/main/java/rife/bld/extension/AbstractBootOperation.java @@ -61,9 +61,9 @@ public abstract class AbstractBootOperation extends AbstractOperation infLibs() { return infLibs_; diff --git a/src/main/java/rife/bld/extension/BootJarOperation.java b/src/main/java/rife/bld/extension/BootJarOperation.java index 76ed2a6..c6ae93e 100644 --- a/src/main/java/rife/bld/extension/BootJarOperation.java +++ b/src/main/java/rife/bld/extension/BootJarOperation.java @@ -37,9 +37,9 @@ public class BootJarOperation extends AbstractBootOperation { private static final Logger LOGGER = Logger.getLogger(BootJarOperation.class.getName()); /** - * Provides the destination file name that will be used for the archive creation. + * Provides the destination file name that will be used for the JAR creation. * - * @param name the war archive destination file name + * @param name the JAR destination file name * @return this operation instance */ @Override @@ -48,9 +48,9 @@ public class BootJarOperation extends AbstractBootOperation { } /** - * Provides the destination directory in which the archive will be created. + * Provides the destination directory in which the JAR will be created. * - * @param directory the war destination directory + * @param directory the JAR destination directory * @return this operation instance */ @Override @@ -59,7 +59,7 @@ public class BootJarOperation extends AbstractBootOperation { } /** - * Provides library JARs that will be used for the JAR creation. + * Provides JAR libraries that will be used for the JAR creation. * * @param jars Java archive files * @return this operation instance @@ -70,7 +70,7 @@ public class BootJarOperation extends AbstractBootOperation { } /** - * Provides library JARs that will be used for the JAR creation. + * Provides JAR libraries that will be used for the JAR creation. * * @param jar Java archive file * @return this operation instance diff --git a/src/main/java/rife/bld/extension/BootWarOperation.java b/src/main/java/rife/bld/extension/BootWarOperation.java index d3f76a3..a3125a5 100644 --- a/src/main/java/rife/bld/extension/BootWarOperation.java +++ b/src/main/java/rife/bld/extension/BootWarOperation.java @@ -29,7 +29,7 @@ import java.util.logging.Level; import java.util.logging.Logger; /** - * Builds and creates a Spring Boot web archive (WAR). + * Builds and creates a Spring Boot executable web archive (WAR). * * @author Erik C. Thauvin * @since 1.0 @@ -39,9 +39,9 @@ public class BootWarOperation extends AbstractBootOperation { private final List webInfProvidedLibs_ = new ArrayList<>(); /** - * Provides the destination file name that will be used for the archive creation. + * Provides the destination file name that will be used for the WAR creation. * - * @param name the war archive destination file name + * @param name the wAR archive destination file name * @return this operation instance */ @Override @@ -50,9 +50,9 @@ public class BootWarOperation extends AbstractBootOperation { } /** - * Provides the destination directory in which the archive will be created. + * Provides the destination directory in which the WAR will be created. * - * @param directory the war destination directory + * @param directory the WAR destination directory * @return this operation instance */ @Override @@ -61,7 +61,7 @@ public class BootWarOperation extends AbstractBootOperation { } /** - * Provides library JARs that will be used for the WAR creation. + * Provides JAR libraries that will be used for the WAR creation. * * @param jars Java archive files * @return this operation instance @@ -72,7 +72,7 @@ public class BootWarOperation extends AbstractBootOperation { } /** - * Provides library JARs that will be used for the WAR creation. + * Provides JAR libraries that will be used for the WAR creation. * * @param jar Java archive file * @return this operation instance @@ -224,7 +224,7 @@ public class BootWarOperation extends AbstractBootOperation { /** - * Provides library JARs that will be used for the WAR creation in {@code /WEB-INF/lib-provided}. + * Provides JAR libraries that will be used for the WAR creation in {@code /WEB-INF/lib-provided}. * * @param jars Java archive files * @return this operation instance @@ -235,7 +235,7 @@ public class BootWarOperation extends AbstractBootOperation { } /** - * Provides the library JARs that will be used for the WAR creation in {@code /WEB-INF/lib-provided}. + * Provides the JAR libraries that will be used for the WAR creation in {@code /WEB-INF/lib-provided}. * * @param jar Java archive file * @return this operation instance