Drop karaf-plugin it 82/76382/2
authorStephen Kitt <skitt@redhat.com>
Sun, 23 Sep 2018 08:36:45 +0000 (10:36 +0200)
committerMichael Vorburger <vorburger@redhat.com>
Mon, 24 Sep 2018 08:29:13 +0000 (08:29 +0000)
It doesn’t work and wouldn’t do anything interesting anyway even if it
did.

Change-Id: Ifefab87bfb17de61e91b88a5b58b51cd60814b9b
Signed-off-by: Stephen Kitt <skitt@redhat.com>
karaf-plugin/pom.xml
karaf-plugin/src/it/settings.xml [deleted file]
karaf-plugin/src/it/simple-it/pom.xml [deleted file]
karaf-plugin/src/it/simple-it/verify.groovy [deleted file]

index 6269556e78050077f7693e4bae23900d47055a7c..5f0141659e345a7acaf129526c923430d75c3adf 100644 (file)
       </plugin>
     </plugins>
   </build>
-  <profiles>
-    <profile>
-      <id>run-its</id>
-      <build>
-
-        <plugins>
-          <plugin>
-            <artifactId>maven-invoker-plugin</artifactId>
-            <version>2.0.0</version>
-            <configuration>
-              <debug>true</debug>
-              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
-              <pomIncludes>
-                <pomInclude>*/pom.xml</pomInclude>
-              </pomIncludes>
-              <postBuildHookScript>verify</postBuildHookScript>
-              <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
-              <settingsFile>src/it/settings.xml</settingsFile>
-              <goals>
-                <goal>clean</goal>
-                <goal>test-compile</goal>
-              </goals>
-            </configuration>
-            <executions>
-              <execution>
-                <id>integration-test</id>
-                <goals>
-                  <goal>install</goal>
-                  <goal>integration-test</goal>
-                  <goal>verify</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-
-      </build>
-    </profile>
-  </profiles>
 
 </project>
diff --git a/karaf-plugin/src/it/settings.xml b/karaf-plugin/src/it/settings.xml
deleted file mode 100644 (file)
index fd7219c..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- The NOTICE file referred to in the license statement below is available
- as Karaf-NOTICE at the root of this project.
--->
-<!--
-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.
--->
-
-<settings>
-  <profiles>
-    <profile>
-      <id>it-repo</id>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-      </activation>
-      <repositories>
-        <repository>
-          <id>local.central</id>
-          <url>@localRepositoryUrl@</url>
-          <releases>
-            <enabled>true</enabled>
-          </releases>
-          <snapshots>
-            <enabled>true</enabled>
-          </snapshots>
-        </repository>
-      </repositories>
-      <pluginRepositories>
-        <pluginRepository>
-          <id>local.central</id>
-          <url>@localRepositoryUrl@</url>
-          <releases>
-            <enabled>true</enabled>
-          </releases>
-          <snapshots>
-            <enabled>true</enabled>
-          </snapshots>
-        </pluginRepository>
-      </pluginRepositories>
-    </profile>
-  </profiles>
-</settings>
diff --git a/karaf-plugin/src/it/simple-it/pom.xml b/karaf-plugin/src/it/simple-it/pom.xml
deleted file mode 100644 (file)
index 32ce405..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright © 2016 Red Hat, Inc. and others.  All rights reserved.
-
- This program and the accompanying materials are made available under the
- terms of the Eclipse Public License v1.0 which accompanies this distribution,
- and is available at http://www.eclipse.org/legal/epl-v10.html
- -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>org.opendaylight.odlparent.it</groupId>
-  <artifactId>simple-it</artifactId>
-  <version>4.0.1-SNAPSHOT</version>
-
-  <description>A simple IT verifying the basic use case.</description>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>@project.groupId@</groupId>
-        <artifactId>@project.artifactId@</artifactId>
-        <version>@project.version@</version>
-        <executions>
-          <execution>
-            <id>touch</id>
-            <phase>validate</phase>
-            <goals>
-              <goal>touch</goal>
-            </goals>
-            <configuration>
-                <featureRepos>
-                    <param>foo</param>
-                </featureRepos>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-</project>
diff --git a/karaf-plugin/src/it/simple-it/verify.groovy b/karaf-plugin/src/it/simple-it/verify.groovy
deleted file mode 100644 (file)
index 7b307c7..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-File touchFile = new File( basedir, "target/touch.txt" );
-
-assert touchFile.isFile()