]
Tomaz Cerar updated WFLY-9195:
------------------------------
Estimated Difficulty: Medium (was: Low)
Quickstart guide: helloworld is not working
-------------------------------------------
Key: WFLY-9195
URL:
https://issues.jboss.org/browse/WFLY-9195
Project: WildFly
Issue Type: Bug
Components: Quickstarts
Affects Versions: 11.0.0.Beta1
Reporter: Julien Dore
Assignee: Tomaz Cerar
Priority: Minor
I'm following the [quickstart
guide|https://github.com/wildfly/quickstart/blob/10.x/guide/HelloworldQui...]
and i have downloaded the quickstart-11.x.
With my wildfly server running i'm launching (from quickstart-11.x/helloworld):
{code:java}
package wildfly:deploy
{code}
as describe in the doc but this fail with the following stack:
{code:java}
[ERROR] No plugin found for prefix 'wildfly' in the current project and in the
plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the
repositories [local (C:\Users\PC\.m2\repository), jboss-enterprise-maven-repository
(
https://maven.repository.redhat.com/ga/), jboss-enterprise-maven-repository-ea
(
https://maven.repository.redhat.com/earlyaccess/all/), jboss-public-repository-group
(
https://repository.jboss.org/nexus/content/groups/public/), central
(
https://repo.maven.apache.org/maven2)] -> [Help 1]
{code}
Adding the following code in pom.xml solve the issue:
{code:java}
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>1.1.0.Final</version>
</plugin>
{code}
Note that the application is then accessible at
_http://localhost:8080/helloworld/HelloWorld_ and not
_http://localhost:8080/wildfly-helloworld/HelloWorld_ as written in the documentation.
Note also that these links are not working:
* Installing and starting the JBoss server on Linux, Unix or Mac OS X
* Installing and starting the JBoss server on Windows