Skip to content

Commit

Permalink
[CONVERSION COMMIT] Add back the provision goal
Browse files Browse the repository at this point in the history
  • Loading branch information
jfdenise committed Nov 26, 2024
1 parent f8f055e commit 1ec60ba
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<artifactId>wildfly-plugin-tools</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<groupId>org.wildfly.core</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;

/**
* Provision a server.
*
* @author jfdenise
* @since 3.0
*/
// @Mojo(name = "provision", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME, defaultPhase =
// LifecyclePhase.PACKAGE)
@Mojo(name = "provision", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME, defaultPhase = LifecyclePhase.PACKAGE)
public class ProvisionServerMojo extends AbstractProvisionServerMojo {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@
import java.nio.file.Path;

import org.apache.maven.plugin.Mojo;
import org.junit.Ignore;
import org.junit.Test;
import org.wildfly.plugin.tests.AbstractProvisionConfiguredMojoTestCase;
import org.wildfly.plugin.tests.AbstractWildFlyMojoTest;

@Ignore
public class ProvisionTest extends AbstractProvisionConfiguredMojoTestCase {

public ProvisionTest() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@
import java.nio.file.Path;

import org.apache.maven.plugin.Mojo;
import org.junit.Ignore;
import org.junit.Test;
import org.wildfly.plugin.tests.AbstractProvisionConfiguredMojoTestCase;
import org.wildfly.plugin.tests.AbstractWildFlyMojoTest;

@Ignore
public class ProvisionTest extends AbstractProvisionConfiguredMojoTestCase {

public ProvisionTest() {
Expand Down

0 comments on commit 1ec60ba

Please sign in to comment.