This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch simplify-MSITE-723 in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git
commit 13f2855dfa3386d1001c2d35059634cfb7bc8348 Author: Michael Osipov <[email protected]> AuthorDate: Thu Apr 11 12:35:56 2024 +0200 Simplify IT for MSITE-723 We truly generate the file now instead of copying it. --- src/it/projects/MSITE-723/index.apt | 20 -------------------- src/it/projects/MSITE-723/pom.xml | 2 +- 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/src/it/projects/MSITE-723/index.apt b/src/it/projects/MSITE-723/index.apt deleted file mode 100644 index 30d1c773..00000000 --- a/src/it/projects/MSITE-723/index.apt +++ /dev/null @@ -1,20 +0,0 @@ -Correct! - -~~ Licensed to the Apache Software Foundation (ASF) under one -~~ or more contributor license agreements. See the NOTICE file -~~ distributed with this work for additional information -~~ regarding copyright ownership. The ASF licenses this file -~~ to you under the Apache License, Version 2.0 (the -~~ "License"); you may not use this file except in compliance -~~ with the License. You may obtain a copy of the License at -~~ -~~ http://www.apache.org/licenses/LICENSE-2.0 -~~ -~~ Unless required by applicable law or agreed to in writing, -~~ software distributed under the License is distributed on an -~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -~~ KIND, either express or implied. See the License for the -~~ specific language governing permissions and limitations -~~ under the License. - - This is an index file in the generated-site. diff --git a/src/it/projects/MSITE-723/pom.xml b/src/it/projects/MSITE-723/pom.xml index d53ddbb2..aabf742c 100644 --- a/src/it/projects/MSITE-723/pom.xml +++ b/src/it/projects/MSITE-723/pom.xml @@ -54,7 +54,7 @@ under the License. </goals> <configuration> <target> - <copy failonerror="false" file="index.apt" tofile="${project.build.directory}/generated-site/apt/index.apt"/> + <echo file="${project.build.directory}/generated-site/apt/index.apt">Correct!${line.separator}${line.separator} This is an index file in the generated-site.</echo> </target> </configuration> </execution>
