Open
Description
When trying to start the service as described in the docs, I'm getting this error:
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.0.0:java (default-cli) on project minie: The parameters 'mainClass' for goal org.codehaus.mojo:exec-maven-plugin:3.0.0:java are missing or invalid -> [Help 1]
Adding the following snippet fixed the problem for me.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>uk.ac.ucl.cs.mr.Main</mainClass>
</configuration>
</plugin>
Metadata
Metadata
3690Assignees
Labels
No labels