Hi,

When using the maven plugin within Intellij I receive the following error:

Failed to execute goal
org.apache.openejb.maven:tomee-maven-plugin:1.7.1:deploy (default-cli) on
project untitled: Execution default-cli of goal
org.apache.openejb.maven:tomee-maven-plugin:1.7.1:deploy failed:
/openejb/DeployerBusinessRemote does not exist in the system.  Check that
the app was successfully deployed. -> [Help 1]

Any ideas? I'm new to Java EE & maven so feel free to just point me
somewhere if I have not configured enough. 

POM is below:

<?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/xsd/maven-4.0.0.xsd";>
    <modelVersion>4.0.0</modelVersion>

    <groupId>groupId</groupId>
    <artifactId>untitled</artifactId>
    <version>1.0-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.openejb.maven</groupId>
                <artifactId>tomee-maven-plugin</artifactId>
                <version>1.7.1</version>
                <configuration>
                    <tomeeVersion>1.7.2</tomeeVersion>
                    <tomeeClassifier>plus</tomeeClassifier>
                   
<path>c:\Users\Mark\Documents\Dev\Gen\test\untitled\target\apache-tomee\webapps</path>

                </configuration>

            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <webXml>web\WEB-INF\web.xml</webXml>
                </configuration>

            </plugin></plugins>
    </build>
    <packaging>war</packaging>

</project>



--
View this message in context: 
http://tomee-openejb.979440.n4.nabble.com/maven-plugin-error-tp4677110.html
Sent from the TomEE Users mailing list archive at Nabble.com.

Reply via email to