Maven - No plugin found for prefix 'wildfly' in the current project

Kevin Joymungol

Am using Wildfly 8 and I need to use the java batch processor from JSR 352. I downloaded the examples from https://github.com/javaee-samples/javaee7-samples but can't get them to work.

On the batch folder I did mvn clean package wildfly:deploy but am getting the 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 (/home/krishnen/.m2/repository), codehaus-snapshots (http://nexus.codehaus.org/snapshots/), central (http://repo.maven.apache.org/maven2)]

Any ideas what may be wrong?

khmarbaise

You simply can add the following in your settings.xml file:

<pluginGroups>
  <pluginGroup>org.wildfly.plugins</pluginGroup>
</pluginGroups>

After that you can use it like this:

mvn wildfly:deploy

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Maven - No plugin found for prefix 'wildfly' in the current project

From Dev

Maven Error: No plugin found for prefix ‘archetype’ in the current project using Nexus

From Dev

wildfly-maven-plugin --> No plugin found for prefix 'wildfly'

From Dev

wildfly-maven-plugin --> No plugin found for prefix 'wildfly'

From Java

Maven- No plugin found for prefix 'spring-boot' in the current project and in the plugin groups

From Dev

Maven - No plugin found for prefix 'tomcat7' in the current project and in the plugin groups

From Java

How to fix "No plugin found for prefix 'liquibase' in the current project and in the plugin groups"

From Dev

No plugin found for prefix 'jetty' in the current project and in the plugin groups (local, central)

From Dev

No plugin found for prefix 'gcloud' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo]

From Dev

Multi module Maven project with wildfly-swarm-plugin

From Dev

"Plugin not found for prefix app engine" when using maven

From Dev

Wildfly maven plugin not register web context

From Dev

Wildfly Maven Plugin ignores deployment name?

From Dev

Maven WildFly Plugin: Could not execute goal deploy

From Dev

Wildfly-Maven-Plugin only Ear and War

From Dev

Jetty Error: No plugin found for prefix 'jetty'

From Dev

Custom Maven plugin hosting and prefix resolution

From Dev

Deploying Maven project with local dependencies to WildFly

From Dev

Including target/classes/* of current project into maven plugin execution classpath for bytecode instrumention with ASM

From Dev

Bamboo maven plugin cannot be found

From Dev

Maven Plugin Dependency : class not found

From Dev

Maven wildfly-maven-plugin custom standalone.xml

From Dev

Maven wildfly-maven-plugin custom standalone.xml

From Dev

Maven Plugin for project semantic versioning

From Dev

Maven Plugin for project semantic versioning

From Dev

Start and configure a WildFly server and deploy the app using wildfly-maven-plugin in 1 maven run

From Dev

Deploy app using wildfly maven plugin on an address different than localhost

From Dev

Wildfly Maven Plugin error: deploy-artifact must specify the artifactId

From Dev

What is the command line argument to restart jboss via wildfly maven plugin?

Related Related

  1. 1

    Maven - No plugin found for prefix 'wildfly' in the current project

  2. 2

    Maven Error: No plugin found for prefix ‘archetype’ in the current project using Nexus

  3. 3

    wildfly-maven-plugin --> No plugin found for prefix 'wildfly'

  4. 4

    wildfly-maven-plugin --> No plugin found for prefix 'wildfly'

  5. 5

    Maven- No plugin found for prefix 'spring-boot' in the current project and in the plugin groups

  6. 6

    Maven - No plugin found for prefix 'tomcat7' in the current project and in the plugin groups

  7. 7

    How to fix "No plugin found for prefix 'liquibase' in the current project and in the plugin groups"

  8. 8

    No plugin found for prefix 'jetty' in the current project and in the plugin groups (local, central)

  9. 9

    No plugin found for prefix 'gcloud' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo]

  10. 10

    Multi module Maven project with wildfly-swarm-plugin

  11. 11

    "Plugin not found for prefix app engine" when using maven

  12. 12

    Wildfly maven plugin not register web context

  13. 13

    Wildfly Maven Plugin ignores deployment name?

  14. 14

    Maven WildFly Plugin: Could not execute goal deploy

  15. 15

    Wildfly-Maven-Plugin only Ear and War

  16. 16

    Jetty Error: No plugin found for prefix 'jetty'

  17. 17

    Custom Maven plugin hosting and prefix resolution

  18. 18

    Deploying Maven project with local dependencies to WildFly

  19. 19

    Including target/classes/* of current project into maven plugin execution classpath for bytecode instrumention with ASM

  20. 20

    Bamboo maven plugin cannot be found

  21. 21

    Maven Plugin Dependency : class not found

  22. 22

    Maven wildfly-maven-plugin custom standalone.xml

  23. 23

    Maven wildfly-maven-plugin custom standalone.xml

  24. 24

    Maven Plugin for project semantic versioning

  25. 25

    Maven Plugin for project semantic versioning

  26. 26

    Start and configure a WildFly server and deploy the app using wildfly-maven-plugin in 1 maven run

  27. 27

    Deploy app using wildfly maven plugin on an address different than localhost

  28. 28

    Wildfly Maven Plugin error: deploy-artifact must specify the artifactId

  29. 29

    What is the command line argument to restart jboss via wildfly maven plugin?

HotTag

Archive