[jboss-jira] [JBoss JIRA] (WFLY-9195) Quickstart guide: helloworld is not working
Julien Dore (JIRA)
issues at jboss.org
Sat Aug 5 14:08:00 EDT 2017
Julien Dore created WFLY-9195:
---------------------------------
Summary: Quickstart guide: helloworld is not working
Key: WFLY-9195
URL: https://issues.jboss.org/browse/WFLY-9195
Project: WildFly
Issue Type: Bug
Components: Documentation
Reporter: Julien Dore
Priority: Minor
I'm following the [quickstart guide|https://github.com/wildfly/quickstart/blob/10.x/guide/HelloworldQuickstart.asciidoc] 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
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
More information about the jboss-jira
mailing list