wildfly-maven-plugin

wildfly-maven-plugin deployment over SSL works once then “connection error”

岁酱吖の 提交于 2020-01-06 06:32:53
问题 I'm getting a weird behavior after securing Wildfly Admin console to use HTTPS, and configuring my pom.xml to deploy over https. (I tried on versions 8.2.1 and 10.1.0, standalone mode). I can only (re)deploy once successfully. After that, I get the error below, and I have to restart the server to (re)deploy again: Change in pom.xml: <plugin> <groupId>org.wildfly.plugins</groupId> <artifactId>wildfly-maven-plugin</artifactId> <version>1.0.2.Final</version> <configuration> <protocol>https

wildfly-maven-plugin deployment over SSL works once then “connection error”

心不动则不痛 提交于 2020-01-06 06:32:47
问题 I'm getting a weird behavior after securing Wildfly Admin console to use HTTPS, and configuring my pom.xml to deploy over https. (I tried on versions 8.2.1 and 10.1.0, standalone mode). I can only (re)deploy once successfully. After that, I get the error below, and I have to restart the server to (re)deploy again: Change in pom.xml: <plugin> <groupId>org.wildfly.plugins</groupId> <artifactId>wildfly-maven-plugin</artifactId> <version>1.0.2.Final</version> <configuration> <protocol>https

How can I change WildFly listening ports with Maven?

自闭症网瘾萝莉.ら 提交于 2019-12-10 23:15:55
问题 I'm using wildfly-maven-plugin for my integration tests. How can I change port default numbers(8080, 8443)? I couldn't find any configuration property for those port numbers. UPDATE I tried yntelectual's answer but ports numbers are still in their default values. I found this and the port numbers are changed. But the start goal fails yielding "failed to start in XX seconds" may some signaling procedure doesn't know the changed port. <executions> <execution> <id>wildfly-start</id> <phase>pre