You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomee.apache.org by mauro2java2011 <ma...@gmail.com> on 2014/06/05 17:18:54 UTC

error with maven: i tried to run with: package tomee:run

hi all . 
i  have tried to write a web tomee application with  the maven archetipe . 
*I have also tried to run with:

package tomee:run *

but i get the following message:

No plugin found for prefix 'tomee' in the current project and in the plugin
groups [org.apache.maven.plugins, org.codehaus.mojo] available from the
repositories [local (/home/utente_javaee7/.m2/repository), central
(http://repo.maven.apache.org/maven2)] -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read
the following articles:

[Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException


please how i can fix it ?????

my pom.xml it is :

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>it.proveconmaven5</groupId>
  <artifactId>mavenproject2</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>war</packaging>
  <name>mavenproject2 TomEE Webapp</name>
  <url>http://tomee.apache.org</url>

  <dependencies>
    <dependency>
      <groupId>org.apache.openejb</groupId>
      <artifactId>javaee-api</artifactId>
      <version>6.0-5</version>
      <scope>provided</scope>
    </dependency>

    

    
        <dependency>  
        <groupId>org.primefaces</groupId>  
        <artifactId>primefaces</artifactId>  
        <version>5.0</version>  
    </dependency> 
    
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.0</version>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.13</version>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <failOnMissingWebXml>false</failOnMissingWebXml>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.openejb.maven</groupId>
        <artifactId>tomee-maven-plugin</artifactId>
        <version>1.0.3-SNAPSHOT</version>
        <configuration>
          <context>ROOT</context>
        </configuration>
      </plugin>
      <plugin>
            <groupId>org.apache.openjpa</groupId>
            <artifactId>openjpa-maven-plugin</artifactId>
            <version>2.2.0</version>
            <configuration>
                <includes>**/entities/*.class</includes>
                <excludes>**/entities/XML*.class</excludes>
                <addDefaultConstructor>true</addDefaultConstructor>
               
<enforcePropertyRestrictions>true</enforcePropertyRestrictions>
            </configuration>
            <executions>
                <execution>
                    <id>enhancer</id>
                    <phase>process-classes</phase>
                    <goals>
                        <goal>enhance</goal>
                    </goals>
                </execution>
            </executions>
            <dependencies>
                <dependency>
                    <groupId>org.apache.openjpa</groupId>
                    <artifactId>openjpa</artifactId>
                    
                    <version>2.2.0</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
  </build>

  <repositories>
    <repository>
      <id>apache-snapshot</id>
      <name>Apache Snapshot Repository</name>
      <url>https://repository.apache.org/content/groups/snapshots/</url>
    </repository>
 
    
  </repositories>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
</project>

---------------------------------------


also if i try with :
mvn tomee:help

i get :

The POM for org.apache.openejb.maven:tomee-maven-plugin:jar:1.0.3-SNAPSHOT
is missing, no dependency information available
Failed to retrieve plugin descriptor for
org.apache.openejb.maven:tomee-maven-plugin:1.0.3-SNAPSHOT: Plugin
org.apache.openejb.maven:tomee-maven-plugin:1.0.3-SNAPSHOT or one of its
dependencies could not be resolved: Failed to read artifact descriptor for
org.apache.openejb.maven:tomee-maven-plugin:jar:1.0.3-SNAPSHOT
Downloading:
http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
Downloading:
http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
                      
Downloaded:
http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (22
KB at 14.3 KB/sec)
                      
Downloaded:
http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
(13 KB at 7.8 KB/sec)
------------------------------------------------------------------------
BUILD FAILURE
------------------------------------------------------------------------
Total time: 6.763s
Finished at: Thu Jun 05 17:17:30 CEST 2014
Final Memory: 7M/18M
------------------------------------------------------------------------
No plugin found for prefix 'tomee' in the current project and in the plugin
groups [org.apache.maven.plugins, org.codehaus.mojo] available from the
repositories [local (/home/utente_javaee7/.m2/repository), central
(http://repo.maven.apache.org/maven2)] -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read
the following articles:
[Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException












--
View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907.html
Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: error with maven: i tried to run with: package tomee:run

Posted by Romain Manni-Bucau <rm...@gmail.com>.
you can configure synchronization block (just define
<synchronization></synchronization> for defaults in plugin
configuration). For classes you need to add extension .class and
activate reloadOnUpdate or (personally I prefer next one) type
"reload[ENTER]" in the console.


Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau


2014-06-05 18:54 GMT+02:00 mauro2java2011 <ma...@gmail.com>:
> tank you very much !!!
>
> With package tomee:run it work "!!!
>
> But if i add page and classes at project , how i can redeploy?
> i have to shutdown the tomee with tomee:stop and next clean package
> tomee:run action ?
>
> or i can redeploy without stop and run the tomee with maven plugin?
>
>
>
>
> --
> View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907p4669922.html
> Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: error with maven: i tried to run with: package tomee:run

Posted by mauro2java2011 <ma...@gmail.com>.
tank you very much !!!

With package tomee:run it work "!!!

But if i add page and classes at project , how i can redeploy?
i have to shutdown the tomee with tomee:stop and next clean package
tomee:run action ?

or i can redeploy without stop and run the tomee with maven plugin?




--
View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907p4669922.html
Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: error with maven: i tried to run with: package tomee:run

Posted by Romain Manni-Bucau <rm...@gmail.com>.
TomEE 1.7.0 is just 1.6+1. TomEE 2 will be EE 7.


Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau


2014-06-05 18:23 GMT+02:00 mauro2java2011 <ma...@gmail.com>:
> i have changed with 1.6.0.2 and now it work!!!!!!!!!
>
> tank you very much !!!!!!
>
>
> the 1.7.0-SNAPSHOT  it is for get tomee 1.7 compliant to javaee7 ??????
>
>
>
>
>
> --
> View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907p4669920.html
> Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: error with maven: i tried to run with: package tomee:run

Posted by mauro2java2011 <ma...@gmail.com>.
i have changed with 1.6.0.2 and now it work!!!!!!!!!

tank you very much !!!!!!


the 1.7.0-SNAPSHOT  it is for get tomee 1.7 compliant to javaee7 ??????





--
View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907p4669920.html
Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: error with maven: i tried to run with: package tomee:run

Posted by Andy Gumbrecht <ag...@tomitribe.com>.
Change the only line in your pom that  contains 1.0.3-SNAPSHOT to 
contain 1.7.0-SNAPSHOT ?

Andy.

On 05/06/2014 17:51, mauro2java2011 wrote:
> but please how i can correct my pom ?
> please what lines i have to fixe ?
>
> i have developped my application with netbeans 8 .
> I have created a new maven project with the tomee archetype .
> NExt from the panel properties of my project , i have created a custom
> action with :
>   package tomee:run
>
> the message of errors that i have pubblished it is from the output into the
> consolle of netbeans 8 after i have run the :
> package tomee:run
> and the
> tomee:help
>
>
>
>
>
>
>
>
>
> --
> View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907p4669918.html
> Sent from the OpenEJB User mailing list archive at Nabble.com.

-- 
   Andy Gumbrecht

   http://www.tomitribe.com
   agumbrecht@tomitribe.com
   https://twitter.com/AndyGeeDe

   TomEE treibt Tomitribe! | http://tomee.apache.org


Re: error with maven: i tried to run with: package tomee:run

Posted by mauro2java2011 <ma...@gmail.com>.
but please how i can correct my pom ? 
please what lines i have to fixe ?

i have developped my application with netbeans 8 .
I have created a new maven project with the tomee archetype .
NExt from the panel properties of my project , i have created a custom
action with :
 package tomee:run

the message of errors that i have pubblished it is from the output into the
consolle of netbeans 8 after i have run the :
package tomee:run 
and the 
tomee:help









--
View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907p4669918.html
Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: error with maven: i tried to run with: package tomee:run

Posted by Andy Gumbrecht <ag...@tomitribe.com>.
Also, if you let me know where you read about this while you made your 
project then I can try and make sure the documentation is correct.

Thanks in advance,

Andy.

-- 
   Andy Gumbrecht

   http://www.tomitribe.com
   agumbrecht@tomitribe.com
   https://twitter.com/AndyGeeDe

   TomEE treibt Tomitribe! | http://tomee.apache.org


Re: error with maven: i tried to run with: package tomee:run

Posted by Romain Manni-Bucau <rm...@gmail.com>.
Hi

1.0.3-SNAPSHOT version doesn't exist. Use 1.6.0.2 for instance


Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau


2014-06-05 17:18 GMT+02:00 mauro2java2011 <ma...@gmail.com>:
> hi all .
> i  have tried to write a web tomee application with  the maven archetipe .
> *I have also tried to run with:
>
> package tomee:run *
>
> but i get the following message:
>
> No plugin found for prefix 'tomee' in the current project and in the plugin
> groups [org.apache.maven.plugins, org.codehaus.mojo] available from the
> repositories [local (/home/utente_javaee7/.m2/repository), central
> (http://repo.maven.apache.org/maven2)] -> [Help 1]
>
> To see the full stack trace of the errors, re-run Maven with the -e switch.
> Re-run Maven using the -X switch to enable full debug logging.
>
> For more information about the errors and possible solutions, please read
> the following articles:
>
> [Help 1]
> http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
>
>
> please how i can fix it ?????
>
> my pom.xml it is :
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> http://maven.apache.org/maven-v4_0_0.xsd">
>   <modelVersion>4.0.0</modelVersion>
>
>   <groupId>it.proveconmaven5</groupId>
>   <artifactId>mavenproject2</artifactId>
>   <version>1.0-SNAPSHOT</version>
>   <packaging>war</packaging>
>   <name>mavenproject2 TomEE Webapp</name>
>   <url>http://tomee.apache.org</url>
>
>   <dependencies>
>     <dependency>
>       <groupId>org.apache.openejb</groupId>
>       <artifactId>javaee-api</artifactId>
>       <version>6.0-5</version>
>       <scope>provided</scope>
>     </dependency>
>
>
>
>
>         <dependency>
>         <groupId>org.primefaces</groupId>
>         <artifactId>primefaces</artifactId>
>         <version>5.0</version>
>     </dependency>
>
>   </dependencies>
>
>   <build>
>     <plugins>
>       <plugin>
>         <groupId>org.apache.maven.plugins</groupId>
>         <artifactId>maven-compiler-plugin</artifactId>
>         <version>3.0</version>
>       </plugin>
>       <plugin>
>         <groupId>org.apache.maven.plugins</groupId>
>         <artifactId>maven-surefire-plugin</artifactId>
>         <version>2.13</version>
>       </plugin>
>       <plugin>
>         <groupId>org.apache.maven.plugins</groupId>
>         <artifactId>maven-war-plugin</artifactId>
>         <version>2.3</version>
>         <configuration>
>           <failOnMissingWebXml>false</failOnMissingWebXml>
>         </configuration>
>       </plugin>
>       <plugin>
>         <groupId>org.apache.openejb.maven</groupId>
>         <artifactId>tomee-maven-plugin</artifactId>
>         <version>1.0.3-SNAPSHOT</version>
>         <configuration>
>           <context>ROOT</context>
>         </configuration>
>       </plugin>
>       <plugin>
>             <groupId>org.apache.openjpa</groupId>
>             <artifactId>openjpa-maven-plugin</artifactId>
>             <version>2.2.0</version>
>             <configuration>
>                 <includes>**/entities/*.class</includes>
>                 <excludes>**/entities/XML*.class</excludes>
>                 <addDefaultConstructor>true</addDefaultConstructor>
>
> <enforcePropertyRestrictions>true</enforcePropertyRestrictions>
>             </configuration>
>             <executions>
>                 <execution>
>                     <id>enhancer</id>
>                     <phase>process-classes</phase>
>                     <goals>
>                         <goal>enhance</goal>
>                     </goals>
>                 </execution>
>             </executions>
>             <dependencies>
>                 <dependency>
>                     <groupId>org.apache.openjpa</groupId>
>                     <artifactId>openjpa</artifactId>
>
>                     <version>2.2.0</version>
>                 </dependency>
>             </dependencies>
>         </plugin>
>     </plugins>
>   </build>
>
>   <repositories>
>     <repository>
>       <id>apache-snapshot</id>
>       <name>Apache Snapshot Repository</name>
>       <url>https://repository.apache.org/content/groups/snapshots/</url>
>     </repository>
>
>
>   </repositories>
>
>   <properties>
>     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
>   </properties>
> </project>
>
> ---------------------------------------
>
>
> also if i try with :
> mvn tomee:help
>
> i get :
>
> The POM for org.apache.openejb.maven:tomee-maven-plugin:jar:1.0.3-SNAPSHOT
> is missing, no dependency information available
> Failed to retrieve plugin descriptor for
> org.apache.openejb.maven:tomee-maven-plugin:1.0.3-SNAPSHOT: Plugin
> org.apache.openejb.maven:tomee-maven-plugin:1.0.3-SNAPSHOT or one of its
> dependencies could not be resolved: Failed to read artifact descriptor for
> org.apache.openejb.maven:tomee-maven-plugin:jar:1.0.3-SNAPSHOT
> Downloading:
> http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
> Downloading:
> http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
>
> Downloaded:
> http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (22
> KB at 14.3 KB/sec)
>
> Downloaded:
> http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
> (13 KB at 7.8 KB/sec)
> ------------------------------------------------------------------------
> BUILD FAILURE
> ------------------------------------------------------------------------
> Total time: 6.763s
> Finished at: Thu Jun 05 17:17:30 CEST 2014
> Final Memory: 7M/18M
> ------------------------------------------------------------------------
> No plugin found for prefix 'tomee' in the current project and in the plugin
> groups [org.apache.maven.plugins, org.codehaus.mojo] available from the
> repositories [local (/home/utente_javaee7/.m2/repository), central
> (http://repo.maven.apache.org/maven2)] -> [Help 1]
>
> To see the full stack trace of the errors, re-run Maven with the -e switch.
> Re-run Maven using the -X switch to enable full debug logging.
>
> For more information about the errors and possible solutions, please read
> the following articles:
> [Help 1]
> http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
>
>
>
>
>
>
>
>
>
>
>
>
> --
> View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907.html
> Sent from the OpenEJB User mailing list archive at Nabble.com.

Re: error with maven: i tried to run with: package tomee:run

Posted by Andy Gumbrecht <ag...@tomitribe.com>.
Change 1.0.3-SNAPSHOT to either 1.7.0-SNAPSHOT or 1.6.0.2 for the 
released version of the tomee-maven-plugin.

Andy.

On 05/06/2014 17:18, mauro2java2011 wrote:
> hi all .
> i  have tried to write a web tomee application with  the maven archetipe .
> *I have also tried to run with:
>
> package tomee:run *
>
> but i get the following message:
>
> No plugin found for prefix 'tomee' in the current project and in the plugin
> groups [org.apache.maven.plugins, org.codehaus.mojo] available from the
> repositories [local (/home/utente_javaee7/.m2/repository), central
> (http://repo.maven.apache.org/maven2)] -> [Help 1]
>
> To see the full stack trace of the errors, re-run Maven with the -e switch.
> Re-run Maven using the -X switch to enable full debug logging.
>
> For more information about the errors and possible solutions, please read
> the following articles:
>
> [Help 1]
> http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
>
>
> please how i can fix it ?????
>
> my pom.xml it is :
>
> <?xml version="1.0" encoding="UTF-8"?>
>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>           xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> http://maven.apache.org/maven-v4_0_0.xsd">
>    <modelVersion>4.0.0</modelVersion>
>
>    <groupId>it.proveconmaven5</groupId>
>    <artifactId>mavenproject2</artifactId>
>    <version>1.0-SNAPSHOT</version>
>    <packaging>war</packaging>
>    <name>mavenproject2 TomEE Webapp</name>
>    <url>http://tomee.apache.org</url>
>
>    <dependencies>
>      <dependency>
>        <groupId>org.apache.openejb</groupId>
>        <artifactId>javaee-api</artifactId>
>        <version>6.0-5</version>
>        <scope>provided</scope>
>      </dependency>
>
>      
>
>      
>          <dependency>
>          <groupId>org.primefaces</groupId>
>          <artifactId>primefaces</artifactId>
>          <version>5.0</version>
>      </dependency>
>      
>    </dependencies>
>
>    <build>
>      <plugins>
>        <plugin>
>          <groupId>org.apache.maven.plugins</groupId>
>          <artifactId>maven-compiler-plugin</artifactId>
>          <version>3.0</version>
>        </plugin>
>        <plugin>
>          <groupId>org.apache.maven.plugins</groupId>
>          <artifactId>maven-surefire-plugin</artifactId>
>          <version>2.13</version>
>        </plugin>
>        <plugin>
>          <groupId>org.apache.maven.plugins</groupId>
>          <artifactId>maven-war-plugin</artifactId>
>          <version>2.3</version>
>          <configuration>
>            <failOnMissingWebXml>false</failOnMissingWebXml>
>          </configuration>
>        </plugin>
>        <plugin>
>          <groupId>org.apache.openejb.maven</groupId>
>          <artifactId>tomee-maven-plugin</artifactId>
>          <version>1.0.3-SNAPSHOT</version>
>          <configuration>
>            <context>ROOT</context>
>          </configuration>
>        </plugin>
>        <plugin>
>              <groupId>org.apache.openjpa</groupId>
>              <artifactId>openjpa-maven-plugin</artifactId>
>              <version>2.2.0</version>
>              <configuration>
>                  <includes>**/entities/*.class</includes>
>                  <excludes>**/entities/XML*.class</excludes>
>                  <addDefaultConstructor>true</addDefaultConstructor>
>                 
> <enforcePropertyRestrictions>true</enforcePropertyRestrictions>
>              </configuration>
>              <executions>
>                  <execution>
>                      <id>enhancer</id>
>                      <phase>process-classes</phase>
>                      <goals>
>                          <goal>enhance</goal>
>                      </goals>
>                  </execution>
>              </executions>
>              <dependencies>
>                  <dependency>
>                      <groupId>org.apache.openjpa</groupId>
>                      <artifactId>openjpa</artifactId>
>                      
>                      <version>2.2.0</version>
>                  </dependency>
>              </dependencies>
>          </plugin>
>      </plugins>
>    </build>
>
>    <repositories>
>      <repository>
>        <id>apache-snapshot</id>
>        <name>Apache Snapshot Repository</name>
>        <url>https://repository.apache.org/content/groups/snapshots/</url>
>      </repository>
>   
>      
>    </repositories>
>
>    <properties>
>      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
>    </properties>
> </project>
>
> ---------------------------------------
>
>
> also if i try with :
> mvn tomee:help
>
> i get :
>
> The POM for org.apache.openejb.maven:tomee-maven-plugin:jar:1.0.3-SNAPSHOT
> is missing, no dependency information available
> Failed to retrieve plugin descriptor for
> org.apache.openejb.maven:tomee-maven-plugin:1.0.3-SNAPSHOT: Plugin
> org.apache.openejb.maven:tomee-maven-plugin:1.0.3-SNAPSHOT or one of its
> dependencies could not be resolved: Failed to read artifact descriptor for
> org.apache.openejb.maven:tomee-maven-plugin:jar:1.0.3-SNAPSHOT
> Downloading:
> http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
> Downloading:
> http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
>                        
> Downloaded:
> http://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (22
> KB at 14.3 KB/sec)
>                        
> Downloaded:
> http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
> (13 KB at 7.8 KB/sec)
> ------------------------------------------------------------------------
> BUILD FAILURE
> ------------------------------------------------------------------------
> Total time: 6.763s
> Finished at: Thu Jun 05 17:17:30 CEST 2014
> Final Memory: 7M/18M
> ------------------------------------------------------------------------
> No plugin found for prefix 'tomee' in the current project and in the plugin
> groups [org.apache.maven.plugins, org.codehaus.mojo] available from the
> repositories [local (/home/utente_javaee7/.m2/repository), central
> (http://repo.maven.apache.org/maven2)] -> [Help 1]
>
> To see the full stack trace of the errors, re-run Maven with the -e switch.
> Re-run Maven using the -X switch to enable full debug logging.
>
> For more information about the errors and possible solutions, please read
> the following articles:
> [Help 1]
> http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
>
>
>
>
>
>
>
>
>
>
>
>
> --
> View this message in context: http://openejb.979440.n4.nabble.com/error-with-maven-i-tried-to-run-with-package-tomee-run-tp4669907.html
> Sent from the OpenEJB User mailing list archive at Nabble.com.

-- 
   Andy Gumbrecht

   http://www.tomitribe.com
   agumbrecht@tomitribe.com
   https://twitter.com/AndyGeeDe

   TomEE treibt Tomitribe! | http://tomee.apache.org