Jar aufruf auf -jar geändert
All checks were successful
Productdefinitions Build & Deploy / deploy (push) Successful in 3m0s
All checks were successful
Productdefinitions Build & Deploy / deploy (push) Successful in 3m0s
This commit is contained in:
@@ -18,6 +18,6 @@ WORKDIR /productdefinitions
|
|||||||
COPY --from=build /productdefinitions/server-app/target/*.jar productdefinitions.jar
|
COPY --from=build /productdefinitions/server-app/target/*.jar productdefinitions.jar
|
||||||
|
|
||||||
EXPOSE 9080
|
EXPOSE 9080
|
||||||
ENTRYPOINT ["java", "-cp", "productdefinitions.jar", "com.kapdion.omds.productdefinitions.productdefinitionsApplication"]
|
ENTRYPOINT ["java", "-jar", "productdefinitions.jar"]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -112,6 +112,19 @@
|
|||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<excludes>
|
||||||
|
<exclude>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
</exclude>
|
||||||
|
</excludes>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
<!-- Resource-plugin soll die gebauten Angular-Seiten in den Build-Output einbetten -->
|
<!-- Resource-plugin soll die gebauten Angular-Seiten in den Build-Output einbetten -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
@@ -133,19 +146,6 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<excludes>
|
|
||||||
<exclude>
|
|
||||||
<groupId>org.projectlombok</groupId>
|
|
||||||
<artifactId>lombok</artifactId>
|
|
||||||
</exclude>
|
|
||||||
</excludes>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user