0 Pluspunkte 0 Minuspunkte

Ich habe ein Spring Boot Maven Projekt erstellt und eine jar Datei wurde im Ordner target erstellt aber wenn ich die jar Datei mit

java -jar test-1.0.0-SNAPSHOT.jar

starten möchte bekomme ich den Fehler

no main manifest attribute, in test-1.0.0-SNAPSHOT.jar

angezeigt. In der pom.xml Datei habe ich das Maven Plugin eingetragen.

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <mainClass>com.aura.Application</mainClass>
    </configuration>
</plugin>

von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Du kannst versuchen execution goals hinzuzufügen

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <mainClass>org.example.Application</mainClass>
    </configuration>

    <executions>
        <execution>
            <goals>
                <goal>repackage</goal>
            </goals>
        </execution>
    </executions>
</plugin>
von