Use of 'version' configuration attribute with wildfly:start #345
Replies: 1 comment 1 reply
-
Hi @rachmatowicz, I tested a configuration like this: <plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>4.1.0.Final</version>
<configuration>
<version>26.0.0.Final</version>
</configuration>
</plugin> And ran It downloads the artifacts via normal Maven artifact downloads. Meaning if the artifacts are already available locally, nothing will be downloaded. If they are not available locally, they will be downloaded from the repository you have Maven configured to download from. If you were not aware, you can override your local repository from the command line with something like |
Beta Was this translation helpful? Give feedback.
-
I'm trying to use the wildfly-maven-plugin to be able to start a Wildfly instance using the 'mvn wildfly:start' command.
My plugin configuration looks like this:
I would like to start an instance of Wildfly 26.0.0.Final.
When I run the maven command, I get instead an instance of the latest version of Wildfly, 28.0.1.Final.
Two questions:
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions