Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maven & Java: The parameters 'mainClass' for goal org.codehaus.mojo:exec-maven-plugin:1.2.1:java are missing or invalid

My Java EE proj builds fine, but when trying to execute get following error:

gert@gert-VirtualBox:~/workspace/CDBOOKSTORE$ mvn exec:java 
[INFO] Scanning for projects... 
[INFO]                                       
[INFO] ------------------------------------------------------------------------
[INFO] Building CDBOOKSTORE 0.0.1-SNAPSHOT 
[INFO] ------------------------------------------------------------------------ 
[INFO]  
[INFO] >>> exec-maven-plugin:1.2.1:java (default-cli) @ CDBOOKSTORE >>>    
[INFO]  
[INFO] --- maven-dependency-plugin:2.8:copy (default) @ CDBOOKSTORE ---
[INFO]  
[INFO] <<< exec-maven-plugin:1.2.1:java (default-cli) @ CDBOOKSTORE <<<    
[INFO] 
[INFO] --- exec-maven-plugin:1.2.1:java (default-cli) @ CDBOOKSTORE ---
[INFO] ------------------------------------------------------------------------ 
[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 2.505s [INFO] Finished at: Fri Nov 08 14:01:40 EST 2013 
[INFO] Final Memory: 9M/21M 
[INFO] ------------------------------------------------------------------------    
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:java (default-cli) on project CDBOOKSTORE: The parameters 'mainClass' for goal org.codehaus.mojo:exec-maven-plugin:1.2.1:java are missing or invalid
-> [Help 1]

But in my pom.xml file (which I've edited following a Java EE book example), I have specified the mainClass config:

 <?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>org.aptovia.javaee7</groupId>
     <artifactId>CDBOOKSTORE</artifactId>
     <version>0.0.1-SNAPSHOT</version>
     <packaging>app-client</packaging>

     <name>CDBOOKSTORE</name>

     <properties>
         <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>

     <dependencies>
         <dependency>
             <groupId>javax</groupId>
             <artifactId>javaee-api</artifactId>
             <version>7.0</version>
             <scope>provided</scope>
         </dependency>

         <dependency>
            <groupId>org.jboss.weld.se</groupId>
            <artifactId>weld-se</artifactId>
            <version>2.1.0.Final</version>
         </dependency>

     </dependencies>

     <build>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>3.1</version>
                 <configuration>
                     <source>1.7</source>
                     <target>1.7</target>
                     <compilerArguments>
                         <endorseddirs>${endorsed.dir}</endorseddirs>
                     </compilerArguments>
                 </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-acr-plugin</artifactId>
                 <version>1.0</version>
                 <extensions>true</extensions>
                 <configuration>
                     <archive>
                         <manifest>                            
                             <mainClass>org.aptovia.javaee7.CDBOOKSTORE.Main</mainClass>
                         </manifest>
                     </archive>
                 </configuration>
             </plugin>

             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-dependency-plugin</artifactId>
                 <version>2.8</version>
                 <executions>
                     <execution>
                         <phase>validate</phase>
                         <goals>
                             <goal>copy</goal>
                         </goals>
                         <configuration>
                             <outputDirectory>${endorsed.dir}</outputDirectory>
                             <silent>true</silent>
                             <artifactItems>
                                 <artifactItem>
                                     <groupId>javax</groupId>
                                     <artifactId>javaee-endorsed-api</artifactId>
                                     <version>7.0</version>
                                     <type>jar</type>
                                 </artifactItem>
                             </artifactItems>
                         </configuration>
                     </execution>
                 </executions>
             </plugin>

              <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>java</goal>
                        </goals>
                        <configuration>                         
                            <mainClass>org.aptovia.javaee7.CDBOOKSTORE.Main</mainClass>
                        </configuration>
                    </execution>
                </executions>
             </plugin>

         </plugins>
     </build>

 </project>

Also looks OK according to this: https://www.mojohaus.org/exec-maven-plugin/usage.html

I've done an mvn clean, rebuilt, but still getting this error. Really not sure whats happening :(

Any help much appreciated!

like image 476
gvanto Avatar asked Nov 08 '13 03:11

gvanto


People also ask

What is Maven and why it is used?

Maven is a popular open-source build tool developed by the Apache Group to build, publish, and deploy several projects at once for better project management. The tool provides allows developers to build and document the lifecycle framework.

What is meant by Maven?

Definition of maven : one who is experienced or knowledgeable : expert a language maven policy mavens computer mavens also : freak sense 4a.

Is Maven a framework?

What is Maven? Maven is a project management and comprehension tool that provides developers a complete build lifecycle framework. Development team can automate the project's build infrastructure in almost no time as Maven uses a standard directory layout and a default build lifecycle.

Is Maven an API?

all tiers. This is the API documentation for Maven Packages. This API is used by the Maven package manager client and is generally not meant for manual consumption.


4 Answers

"configuration" must go outside "executions", like this:

<plugins>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
            <execution>
                <goals>
                    <goal>java</goal>
                </goals>
            </execution>
        </executions>
        <configuration>
            <mainClass>com.emilio.App</mainClass>
        </configuration>
    </plugin>
</plugins>
like image 61
bronson Avatar answered Oct 19 '22 06:10

bronson


Make sure you execute the mvn exec:java from within the same directory where your pom.xml with exec configuration resides.

like image 43
George Avatar answered Oct 19 '22 06:10

George


Configuration seems correct with missing id parameter inside execution part. Proper way would be:

<executions>
    <execution>
        <id>someID</id>
        <goals>
            <goal>java</goal>
        </goals>
        <configuration>
            <mainClass>org.aptovia.javaee7.CDBOOKSTORE.Main</mainClass>
        </configuration>
    </execution>
</executions>

Assuming you are running main method using maven, execution would be like below:

mvn exec:java@someID

someID added inside execution part.

like image 5
Vaibs Avatar answered Oct 19 '22 06:10

Vaibs


If the <configuration> is outside the <executions> , it is the configuration for the plugin to be used no matter what the life-cycle phase is.

If the <configuration> is inside the <executions>, it is the configuration to be used in certain life-cycle phase.

As Vabis has suggested, use mvn exec:java@someID to execute the specific execution of the goal for a plugin.

For more information, please see https://maven.apache.org/guides/mini/guide-configuring-plugins.html.

like image 4
CatSleeping Avatar answered Oct 19 '22 05:10

CatSleeping