Java – compile Maven project
•
Java
I have an ongoing Maven project. I make sure there are no errors. When I try to compile and deploy "MVN clean compile package wildfly: deploy" with this command, it does nothing, and the flashing cursor is right there And my other projects command work What could be the problem? Please help
Solution
You don't have to mention the 'clean and compile' Maven lifecycle phase, because the calling package calls them by default (and there's no harm in calling them.) The package is not even needed as wildfly:deploy will call the package before execution.
Also, check that you have specified the Projcet configuration correctly –
<plugin> <groupId>org.wildfly.plugins</groupId> <artifactId>wildfly-maven-plugin</artifactId> <version>1.0.2.Final</version> <configuration> <filename>${project.build.finalName}.war</filename> </configuration>
Now first make sure you are in the place where you want to place the POM XML and issue: MVN wildfly: deploy
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码