Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testsuite improvements - make the tests repeateable without clean task #27

Closed
wants to merge 10 commits into from
Closed
23 changes: 0 additions & 23 deletions .github/dependabot.yml

This file was deleted.

4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
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>
<parent>
<groupId>org.wildfly.plugins</groupId>
<groupId>org.jboss.eap.plugins</groupId>
<artifactId>wildfly-maven-plugin-parent</artifactId>
<version>5.1.0.Beta1-SNAPSHOT</version>
<version>2.0.0.Final-SNAPSHOT</version>
</parent>

<artifactId>wildfly-plugin-core</artifactId>
Expand Down
49 changes: 16 additions & 33 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
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>
<parent>
<groupId>org.wildfly.plugins</groupId>
<groupId>org.jboss.eap.plugins</groupId>
<artifactId>wildfly-maven-plugin-parent</artifactId>
<version>5.1.0.Beta1-SNAPSHOT</version>
<version>2.0.0.Final-SNAPSHOT</version>
</parent>

<artifactId>wildfly-maven-plugin</artifactId>
<artifactId>eap-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>WildFly Maven Plugin</name>

Expand Down Expand Up @@ -121,40 +121,15 @@
<artifactId>galleon-api</artifactId>
</dependency>

<dependency>
<groupId>org.twdata.maven</groupId>
<artifactId>mojo-executor</artifactId>
<version>${version.org.twdata.maven}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-controller-client</artifactId>
</dependency>

<dependency>
<groupId>org.wildfly.launcher</groupId>
<artifactId>wildfly-launcher</artifactId>
</dependency>
<!-- Seems to be needed as the controller client is transitively bringing it in -->
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-protocol</artifactId>
<exclusions>
<exclusion>
<groupId>org.jboss.modules</groupId>
<artifactId>jboss-modules</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
Expand All @@ -163,10 +138,22 @@
<dependency>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-plugin-tools</artifactId>
<exclusions>
<exclusion>
<groupId>org.wildfly.core</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.wildfly.channel</groupId>
<artifactId>channel-core</artifactId>
<exclusions>
<exclusion>
<groupId>com.ethlo.time</groupId>
<artifactId>itu</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.wildfly.channel</groupId>
Expand All @@ -176,10 +163,6 @@
<groupId>org.wildfly.prospero</groupId>
<artifactId>prospero-metadata</artifactId>
</dependency>
<dependency>
<groupId>org.wildfly.glow</groupId>
<artifactId>wildfly-glow-core</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down

This file was deleted.

Loading