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

Upgrade the wildfly-plugin-tools to 1.0.0.Beta3. #480

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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