Skip to content

Commit

Permalink
Merge pull request #480 from jamezp/plugin-tools-upgrade
Browse files Browse the repository at this point in the history
Upgrade the wildfly-plugin-tools to 1.0.0.Beta3.
  • Loading branch information
jamezp authored Feb 2, 2024
2 parents 24bb11c + e9fb8d6 commit 92af3c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import org.jboss.galleon.universe.maven.repo.MavenRepoManager;
import org.wildfly.core.launcher.CliCommandBuilder;
import org.wildfly.plugin.common.StandardOutput;
import org.wildfly.plugin.tools.util.Utils;
import org.wildfly.plugin.tools.ServerHelper;

/**
* A command executor for executing offline CLI commands.
Expand All @@ -39,7 +39,7 @@ public class OfflineCommandExecutor extends AbstractCommandExecutor<BaseCommandC
@Override
public void execute(final BaseCommandConfiguration config, MavenRepoManager artifactResolver)
throws MojoFailureException, MojoExecutionException {
if (!Utils.isValidHomeDirectory(config.getJBossHome())) {
if (!ServerHelper.isValidHomeDirectory(config.getJBossHome())) {
throw new MojoFailureException("Invalid JBoss Home directory is not valid: " + config.getJBossHome());
}
executeInNewProcess(config);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<version.org.jboss.logging.jboss-logging>3.5.3.Final</version.org.jboss.logging.jboss-logging>
<version.org.wildfly.checkstyle-config>1.0.8.Final</version.org.wildfly.checkstyle-config>
<version.org.wildfly.common.wildfly-common>1.7.0.Final</version.org.wildfly.common.wildfly-common>
<version.org.wildfly.plugin.tools>1.0.0.Beta2</version.org.wildfly.plugin.tools>
<version.org.wildfly.plugin.tools>1.0.0.Beta3</version.org.wildfly.plugin.tools>
<!-- This version property is also retrieved by plugin at runtime to resolve CLI artifact -->
<version.org.wildfly.core>23.0.1.Final</version.org.wildfly.core>
<version.org.wildfly>30.0.0.Final</version.org.wildfly>
Expand Down

0 comments on commit 92af3c5

Please sign in to comment.