8000 Service won't start · Issue #13 · uma-pi1/minie · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Service won't start  #13
Open
Open
@muety

Description

@muety

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

3690

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0