diff --git a/src/it/projects/MSITE-901/invoker.properties b/src/it/projects/MSITE-901/invoker.properties deleted file mode 100644 index a644cb7e..00000000 --- a/src/it/projects/MSITE-901/invoker.properties +++ /dev/null @@ -1,18 +0,0 @@ -# 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. - -invoker.goals = clean package diff --git a/src/it/projects/MSITE-901/pom.xml b/src/it/projects/MSITE-901/pom.xml deleted file mode 100644 index 26fb3cb5..00000000 --- a/src/it/projects/MSITE-901/pom.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - 4.0.0 - - org.apache.maven.plugins.site.it - MSITE-901 - 1.0.0-SNAPSHOT - - Verifies that the site:jar goal output is not altered by the pmd/cpd skipEmptyReport property - - - - - org.apache.maven.plugins - maven-pmd-plugin - @pmdPluginVersion@ - - - - check - - process-sources - - - - - org.apache.maven.plugins - maven-site-plugin - @project.version@ - - - - jar - - - - - - - - - - - maven-project-info-reports-plugin - @projectInfoReportsPluginVersion@ - - - - index - - - - - - - - diff --git a/src/it/projects/MSITE-901/verify.groovy b/src/it/projects/MSITE-901/verify.groovy deleted file mode 100644 index 1cf15bed..00000000 --- a/src/it/projects/MSITE-901/verify.groovy +++ /dev/null @@ -1,27 +0,0 @@ - -/* - * 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. - */ - -File buildLog = new File( basedir, 'build.log' ) -assert buildLog.exists() - -File siteIndex = new File( basedir, 'target/site/index.html' ) -File sitePmd = new File( basedir, 'target/site/pmd.html' ) -assert siteIndex.exists() -assert sitePmd.exists()