gnodet commented on code in PR #178:
URL: 
https://github.com/apache/maven-integration-testing/pull/178#discussion_r909320121


##########
core-it-suite/pom.xml:
##########
@@ -159,6 +161,42 @@ under the License.
       </testResource>
     </testResources>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its</groupId>
+        <artifactId>core-it-bootstrap</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <id>boostrap</id>
+            <phase>process-test-classes</phase>
+            <goals>
+              <goal>download</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <file>src/test/resources/bootstrap.txt</file>
+          <dependencies>
+            <dependency>
+              <groupId>org.apache.maven.its.plugins</groupId>
+              <artifactId>maven-it-plugin-project-interpolation</artifactId>
+              <version>2.1-SNAPSHOT</version>
+              <scope>runtime</scope>
+              <exclusions>
+                <!--
+                NOTE: This artifact (and its dependency maven-verifier) are in 
use by the class loader employed by Surefire
+                to orchestrate this test. Re-downloading (newer snapshots of) 
these artifacts during the tests will wreck
+                havoc on the class loader, i.e. tests fail due to 
NoClassDefFoundError's in the test controller.
+                -->
+                <exclusion>
+                  <groupId>org.apache.maven.its</groupId>
+                  <artifactId>maven-it-helper</artifactId>
+                </exclusion>
+              </exclusions>
+            </dependency>
+          </dependencies>
+        </configuration>

Review Comment:
   This is a copy from one of the removed pom.  I haven't investigated if 
that's still necessary...



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to