From 25ef0e43dade130baf1033fe615a76e735491374 Mon Sep 17 00:00:00 2001 From: Antoine Sabot-Durand Date: Sun, 17 Mar 2024 18:29:08 +0100 Subject: [PATCH] Correct License text indentation --- core/pom.xml | 4 ++-- core/src/main/java/org/moditect/Moditect.java | 4 ++-- core/src/main/java/org/moditect/commands/AddModuleInfo.java | 4 ++-- .../main/java/org/moditect/commands/CreateRuntimeImage.java | 4 ++-- .../main/java/org/moditect/commands/GenerateModuleInfo.java | 4 ++-- .../main/java/org/moditect/commands/GenerateModuleList.java | 4 ++-- .../moditect/internal/analyzer/ServiceLoaderUseScanner.java | 4 ++-- .../main/java/org/moditect/internal/command/LogWriter.java | 4 ++-- .../java/org/moditect/internal/command/ProcessExecutor.java | 4 ++-- .../org/moditect/internal/compiler/ModuleInfoCompiler.java | 4 ++-- .../java/org/moditect/internal/parser/JavaVersionHelper.java | 4 ++-- .../org/moditect/internal/parser/JdepsExtraArgsExtractor.java | 4 ++-- core/src/main/java/org/moditect/model/DependencePattern.java | 4 ++-- .../main/java/org/moditect/model/DependencyDescriptor.java | 4 ++-- .../src/main/java/org/moditect/model/GeneratedModuleInfo.java | 4 ++-- core/src/main/java/org/moditect/model/JarInclusionPolicy.java | 4 ++-- core/src/main/java/org/moditect/model/PackageNamePattern.java | 4 ++-- core/src/main/java/org/moditect/model/Version.java | 4 ++-- core/src/main/java/org/moditect/spi/log/Log.java | 4 ++-- .../org/moditect/internal/parser/JavaVersionHelperTest.java | 4 ++-- core/src/test/java/org/moditect/test/AddModuleInfoTest.java | 4 ++-- .../java/org/moditect/test/model/DependencePatternTest.java | 4 ++-- .../java/org/moditect/test/model/PackageNamePatternTest.java | 4 ++-- etc/license.txt | 4 ++-- integrationtest/hibernate-validator/pom.xml | 4 ++-- .../src/main/java/com/example/ValidationTest.java | 4 ++-- integrationtest/pom.xml | 4 ++-- integrationtest/undertow/pom.xml | 4 ++-- integrationtest/undertow/src/main/docker/Dockerfile | 4 ++-- integrationtest/undertow/src/main/docker/assembly.xml | 4 ++-- integrationtest/undertow/src/main/docker/entrypoint.sh | 4 ++-- .../undertow/src/main/java/com/example/HelloWorldServer.java | 4 ++-- integrationtest/vert.x/pom.xml | 4 ++-- integrationtest/vert.x/src/main/docker-base/Dockerfile | 4 ++-- integrationtest/vert.x/src/main/docker-base/entrypoint.sh | 4 ++-- integrationtest/vert.x/src/main/docker/Dockerfile | 4 ++-- integrationtest/vert.x/src/main/docker/assembly-base.xml | 4 ++-- integrationtest/vert.x/src/main/docker/assembly.xml | 4 ++-- integrationtest/vert.x/src/main/docker/helloWorld.sh | 4 ++-- .../vert.x/src/main/java/com/example/HelloWorldServer.java | 4 ++-- .../vert.x/src/main/java/com/example/HelloWorldVerticle.java | 4 ++-- maven-plugin/pom.xml | 4 ++-- .../java/org/moditect/mavenplugin/add/AddModuleInfoMojo.java | 4 ++-- .../mavenplugin/add/model/MainModuleConfiguration.java | 4 ++-- .../moditect/mavenplugin/add/model/ModuleConfiguration.java | 4 ++-- .../mavenplugin/common/model/ArtifactConfiguration.java | 4 ++-- .../mavenplugin/common/model/ModuleInfoConfiguration.java | 4 ++-- .../mavenplugin/generate/CompileScopeDependencySelector.java | 4 ++-- .../moditect/mavenplugin/generate/GenerateModuleInfoMojo.java | 4 ++-- .../moditect/mavenplugin/generate/ModuleInfoGenerator.java | 4 ++-- .../mavenplugin/generate/model/ArtifactIdentifier.java | 4 ++-- .../mavenplugin/generate/model/ModuleConfiguration.java | 4 ++-- .../moditect/mavenplugin/image/CreateRuntimeImageMojo.java | 4 ++-- .../java/org/moditect/mavenplugin/image/model/Launcher.java | 4 ++-- .../mavenplugin/modulelist/GenerateModuleListMojo.java | 4 ++-- .../moditect/mavenplugin/util/ArtifactResolutionHelper.java | 4 ++-- .../java/org/moditect/mavenplugin/util/DependencyHelper.java | 4 ++-- .../src/main/java/org/moditect/mavenplugin/util/MojoLog.java | 4 ++-- parent/pom.xml | 4 ++-- 59 files changed, 118 insertions(+), 118 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index 0376db1..579864f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -3,9 +3,9 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 --> diff --git a/core/src/main/java/org/moditect/Moditect.java b/core/src/main/java/org/moditect/Moditect.java index c42c616..3380038 100644 --- a/core/src/main/java/org/moditect/Moditect.java +++ b/core/src/main/java/org/moditect/Moditect.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect; diff --git a/core/src/main/java/org/moditect/commands/AddModuleInfo.java b/core/src/main/java/org/moditect/commands/AddModuleInfo.java index 54ef664..1de4cb2 100644 --- a/core/src/main/java/org/moditect/commands/AddModuleInfo.java +++ b/core/src/main/java/org/moditect/commands/AddModuleInfo.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.commands; diff --git a/core/src/main/java/org/moditect/commands/CreateRuntimeImage.java b/core/src/main/java/org/moditect/commands/CreateRuntimeImage.java index 76776cf..37487da 100644 --- a/core/src/main/java/org/moditect/commands/CreateRuntimeImage.java +++ b/core/src/main/java/org/moditect/commands/CreateRuntimeImage.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.commands; diff --git a/core/src/main/java/org/moditect/commands/GenerateModuleInfo.java b/core/src/main/java/org/moditect/commands/GenerateModuleInfo.java index 8197a5a..8453301 100644 --- a/core/src/main/java/org/moditect/commands/GenerateModuleInfo.java +++ b/core/src/main/java/org/moditect/commands/GenerateModuleInfo.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.commands; diff --git a/core/src/main/java/org/moditect/commands/GenerateModuleList.java b/core/src/main/java/org/moditect/commands/GenerateModuleList.java index 6b738da..64f9cef 100644 --- a/core/src/main/java/org/moditect/commands/GenerateModuleList.java +++ b/core/src/main/java/org/moditect/commands/GenerateModuleList.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.commands; diff --git a/core/src/main/java/org/moditect/internal/analyzer/ServiceLoaderUseScanner.java b/core/src/main/java/org/moditect/internal/analyzer/ServiceLoaderUseScanner.java index 4806d8a..4e13816 100644 --- a/core/src/main/java/org/moditect/internal/analyzer/ServiceLoaderUseScanner.java +++ b/core/src/main/java/org/moditect/internal/analyzer/ServiceLoaderUseScanner.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.internal.analyzer; diff --git a/core/src/main/java/org/moditect/internal/command/LogWriter.java b/core/src/main/java/org/moditect/internal/command/LogWriter.java index 6ce5fd9..a21bebd 100644 --- a/core/src/main/java/org/moditect/internal/command/LogWriter.java +++ b/core/src/main/java/org/moditect/internal/command/LogWriter.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.internal.command; diff --git a/core/src/main/java/org/moditect/internal/command/ProcessExecutor.java b/core/src/main/java/org/moditect/internal/command/ProcessExecutor.java index 6f29ccc..95c0457 100644 --- a/core/src/main/java/org/moditect/internal/command/ProcessExecutor.java +++ b/core/src/main/java/org/moditect/internal/command/ProcessExecutor.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.internal.command; diff --git a/core/src/main/java/org/moditect/internal/compiler/ModuleInfoCompiler.java b/core/src/main/java/org/moditect/internal/compiler/ModuleInfoCompiler.java index fb0d9a7..026527d 100644 --- a/core/src/main/java/org/moditect/internal/compiler/ModuleInfoCompiler.java +++ b/core/src/main/java/org/moditect/internal/compiler/ModuleInfoCompiler.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.internal.compiler; diff --git a/core/src/main/java/org/moditect/internal/parser/JavaVersionHelper.java b/core/src/main/java/org/moditect/internal/parser/JavaVersionHelper.java index f94e9a7..7ee3a3c 100644 --- a/core/src/main/java/org/moditect/internal/parser/JavaVersionHelper.java +++ b/core/src/main/java/org/moditect/internal/parser/JavaVersionHelper.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.internal.parser; diff --git a/core/src/main/java/org/moditect/internal/parser/JdepsExtraArgsExtractor.java b/core/src/main/java/org/moditect/internal/parser/JdepsExtraArgsExtractor.java index 8999eeb..dbe0fd8 100644 --- a/core/src/main/java/org/moditect/internal/parser/JdepsExtraArgsExtractor.java +++ b/core/src/main/java/org/moditect/internal/parser/JdepsExtraArgsExtractor.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.internal.parser; diff --git a/core/src/main/java/org/moditect/model/DependencePattern.java b/core/src/main/java/org/moditect/model/DependencePattern.java index 66a832e..9d6e175 100644 --- a/core/src/main/java/org/moditect/model/DependencePattern.java +++ b/core/src/main/java/org/moditect/model/DependencePattern.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.model; diff --git a/core/src/main/java/org/moditect/model/DependencyDescriptor.java b/core/src/main/java/org/moditect/model/DependencyDescriptor.java index 131fa0c..1c8c162 100644 --- a/core/src/main/java/org/moditect/model/DependencyDescriptor.java +++ b/core/src/main/java/org/moditect/model/DependencyDescriptor.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.model; diff --git a/core/src/main/java/org/moditect/model/GeneratedModuleInfo.java b/core/src/main/java/org/moditect/model/GeneratedModuleInfo.java index cab3cca..e3b29c0 100644 --- a/core/src/main/java/org/moditect/model/GeneratedModuleInfo.java +++ b/core/src/main/java/org/moditect/model/GeneratedModuleInfo.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.model; diff --git a/core/src/main/java/org/moditect/model/JarInclusionPolicy.java b/core/src/main/java/org/moditect/model/JarInclusionPolicy.java index 45da4de..1cf6d35 100644 --- a/core/src/main/java/org/moditect/model/JarInclusionPolicy.java +++ b/core/src/main/java/org/moditect/model/JarInclusionPolicy.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.model; diff --git a/core/src/main/java/org/moditect/model/PackageNamePattern.java b/core/src/main/java/org/moditect/model/PackageNamePattern.java index 6eaaae6..7f3ccf2 100644 --- a/core/src/main/java/org/moditect/model/PackageNamePattern.java +++ b/core/src/main/java/org/moditect/model/PackageNamePattern.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.model; diff --git a/core/src/main/java/org/moditect/model/Version.java b/core/src/main/java/org/moditect/model/Version.java index 7142809..f07afcc 100644 --- a/core/src/main/java/org/moditect/model/Version.java +++ b/core/src/main/java/org/moditect/model/Version.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.model; diff --git a/core/src/main/java/org/moditect/spi/log/Log.java b/core/src/main/java/org/moditect/spi/log/Log.java index a4b3bcc..a337635 100644 --- a/core/src/main/java/org/moditect/spi/log/Log.java +++ b/core/src/main/java/org/moditect/spi/log/Log.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.spi.log; diff --git a/core/src/test/java/org/moditect/internal/parser/JavaVersionHelperTest.java b/core/src/test/java/org/moditect/internal/parser/JavaVersionHelperTest.java index ffddac9..5306dc3 100644 --- a/core/src/test/java/org/moditect/internal/parser/JavaVersionHelperTest.java +++ b/core/src/test/java/org/moditect/internal/parser/JavaVersionHelperTest.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.internal.parser; diff --git a/core/src/test/java/org/moditect/test/AddModuleInfoTest.java b/core/src/test/java/org/moditect/test/AddModuleInfoTest.java index 17154ae..1c6fc78 100644 --- a/core/src/test/java/org/moditect/test/AddModuleInfoTest.java +++ b/core/src/test/java/org/moditect/test/AddModuleInfoTest.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.test; diff --git a/core/src/test/java/org/moditect/test/model/DependencePatternTest.java b/core/src/test/java/org/moditect/test/model/DependencePatternTest.java index e1096dd..5150096 100644 --- a/core/src/test/java/org/moditect/test/model/DependencePatternTest.java +++ b/core/src/test/java/org/moditect/test/model/DependencePatternTest.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.test.model; diff --git a/core/src/test/java/org/moditect/test/model/PackageNamePatternTest.java b/core/src/test/java/org/moditect/test/model/PackageNamePatternTest.java index dbb01a8..46265aa 100644 --- a/core/src/test/java/org/moditect/test/model/PackageNamePatternTest.java +++ b/core/src/test/java/org/moditect/test/model/PackageNamePatternTest.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.test.model; diff --git a/etc/license.txt b/etc/license.txt index d8e1dba..8d2b894 100644 --- a/etc/license.txt +++ b/etc/license.txt @@ -1,5 +1,5 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/integrationtest/hibernate-validator/pom.xml b/integrationtest/hibernate-validator/pom.xml index 3552925..3ea4949 100644 --- a/integrationtest/hibernate-validator/pom.xml +++ b/integrationtest/hibernate-validator/pom.xml @@ -2,9 +2,9 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 --> diff --git a/integrationtest/hibernate-validator/src/main/java/com/example/ValidationTest.java b/integrationtest/hibernate-validator/src/main/java/com/example/ValidationTest.java index a31e5fa..2dd9edc 100644 --- a/integrationtest/hibernate-validator/src/main/java/com/example/ValidationTest.java +++ b/integrationtest/hibernate-validator/src/main/java/com/example/ValidationTest.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package com.example; diff --git a/integrationtest/pom.xml b/integrationtest/pom.xml index 63c116f..c426d6e 100644 --- a/integrationtest/pom.xml +++ b/integrationtest/pom.xml @@ -2,9 +2,9 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 --> diff --git a/integrationtest/undertow/pom.xml b/integrationtest/undertow/pom.xml index 5452b10..2fd35b0 100644 --- a/integrationtest/undertow/pom.xml +++ b/integrationtest/undertow/pom.xml @@ -2,9 +2,9 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 --> diff --git a/integrationtest/undertow/src/main/docker/Dockerfile b/integrationtest/undertow/src/main/docker/Dockerfile index 0db1938..2ddf579 100644 --- a/integrationtest/undertow/src/main/docker/Dockerfile +++ b/integrationtest/undertow/src/main/docker/Dockerfile @@ -1,9 +1,9 @@ # # SPDX-License-Identifier: Apache-2.0 # -# Copyright The original authors +# Copyright The original authors # -# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 +# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 # FROM centos:7 diff --git a/integrationtest/undertow/src/main/docker/assembly.xml b/integrationtest/undertow/src/main/docker/assembly.xml index 2a29ae3..eb9fb31 100644 --- a/integrationtest/undertow/src/main/docker/assembly.xml +++ b/integrationtest/undertow/src/main/docker/assembly.xml @@ -2,9 +2,9 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 --> diff --git a/integrationtest/vert.x/src/main/docker-base/Dockerfile b/integrationtest/vert.x/src/main/docker-base/Dockerfile index 0e507d7..d6f4a6a 100644 --- a/integrationtest/vert.x/src/main/docker-base/Dockerfile +++ b/integrationtest/vert.x/src/main/docker-base/Dockerfile @@ -1,9 +1,9 @@ # # SPDX-License-Identifier: Apache-2.0 # -# Copyright The original authors +# Copyright The original authors # -# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 +# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 # FROM centos:7 diff --git a/integrationtest/vert.x/src/main/docker-base/entrypoint.sh b/integrationtest/vert.x/src/main/docker-base/entrypoint.sh index 73e0f20..1ad0186 100755 --- a/integrationtest/vert.x/src/main/docker-base/entrypoint.sh +++ b/integrationtest/vert.x/src/main/docker-base/entrypoint.sh @@ -2,9 +2,9 @@ # # SPDX-License-Identifier: Apache-2.0 # -# Copyright The original authors +# Copyright The original authors # -# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 +# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 # set -e diff --git a/integrationtest/vert.x/src/main/docker/Dockerfile b/integrationtest/vert.x/src/main/docker/Dockerfile index d09d7dd..fa921b0 100644 --- a/integrationtest/vert.x/src/main/docker/Dockerfile +++ b/integrationtest/vert.x/src/main/docker/Dockerfile @@ -1,9 +1,9 @@ # # SPDX-License-Identifier: Apache-2.0 # -# Copyright The original authors +# Copyright The original authors # -# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 +# Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 # FROM moditect/vertx-helloworld-base diff --git a/integrationtest/vert.x/src/main/docker/assembly-base.xml b/integrationtest/vert.x/src/main/docker/assembly-base.xml index f174a03..0181385 100644 --- a/integrationtest/vert.x/src/main/docker/assembly-base.xml +++ b/integrationtest/vert.x/src/main/docker/assembly-base.xml @@ -2,9 +2,9 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 --> diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/add/AddModuleInfoMojo.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/add/AddModuleInfoMojo.java index 56bc224..cb5299d 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/add/AddModuleInfoMojo.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/add/AddModuleInfoMojo.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.add; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/MainModuleConfiguration.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/MainModuleConfiguration.java index 8de3861..e43e2cd 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/MainModuleConfiguration.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/MainModuleConfiguration.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.add.model; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/ModuleConfiguration.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/ModuleConfiguration.java index a6fff37..6a0ddc2 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/ModuleConfiguration.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/add/model/ModuleConfiguration.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.add.model; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ArtifactConfiguration.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ArtifactConfiguration.java index f11261e..766d71a 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ArtifactConfiguration.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ArtifactConfiguration.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.common.model; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ModuleInfoConfiguration.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ModuleInfoConfiguration.java index f8ae731..523fecb 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ModuleInfoConfiguration.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/common/model/ModuleInfoConfiguration.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.common.model; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/CompileScopeDependencySelector.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/CompileScopeDependencySelector.java index 04b1d84..d1255e3 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/CompileScopeDependencySelector.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/CompileScopeDependencySelector.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.generate; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/GenerateModuleInfoMojo.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/GenerateModuleInfoMojo.java index e261963..b022eef 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/GenerateModuleInfoMojo.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/GenerateModuleInfoMojo.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.generate; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/ModuleInfoGenerator.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/ModuleInfoGenerator.java index a1ca478..89d77ee 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/ModuleInfoGenerator.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/ModuleInfoGenerator.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.generate; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ArtifactIdentifier.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ArtifactIdentifier.java index 2335b21..a311f14 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ArtifactIdentifier.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ArtifactIdentifier.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.generate.model; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ModuleConfiguration.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ModuleConfiguration.java index 396e420..3d4bb42 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ModuleConfiguration.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/generate/model/ModuleConfiguration.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.generate.model; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/image/CreateRuntimeImageMojo.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/image/CreateRuntimeImageMojo.java index 76a1438..b4b8967 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/image/CreateRuntimeImageMojo.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/image/CreateRuntimeImageMojo.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.image; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/image/model/Launcher.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/image/model/Launcher.java index d7e98d2..6dfab49 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/image/model/Launcher.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/image/model/Launcher.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.image.model; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/modulelist/GenerateModuleListMojo.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/modulelist/GenerateModuleListMojo.java index f893c69..4e564b1 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/modulelist/GenerateModuleListMojo.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/modulelist/GenerateModuleListMojo.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.modulelist; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/util/ArtifactResolutionHelper.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/util/ArtifactResolutionHelper.java index 113704f..cd0f900 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/util/ArtifactResolutionHelper.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/util/ArtifactResolutionHelper.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.util; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/util/DependencyHelper.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/util/DependencyHelper.java index 9d7c8c7..e77057b 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/util/DependencyHelper.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/util/DependencyHelper.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.util; diff --git a/maven-plugin/src/main/java/org/moditect/mavenplugin/util/MojoLog.java b/maven-plugin/src/main/java/org/moditect/mavenplugin/util/MojoLog.java index 0273cf2..08a8616 100644 --- a/maven-plugin/src/main/java/org/moditect/mavenplugin/util/MojoLog.java +++ b/maven-plugin/src/main/java/org/moditect/mavenplugin/util/MojoLog.java @@ -1,9 +1,9 @@ /* * SPDX-License-Identifier: Apache-2.0 * - * Copyright The original authors + * Copyright The original authors * - * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + * Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 */ package org.moditect.mavenplugin.util; diff --git a/parent/pom.xml b/parent/pom.xml index b323a02..4470a20 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -3,9 +3,9 @@ SPDX-License-Identifier: Apache-2.0 - Copyright The original authors + Copyright The original authors - Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 + Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 -->