diff --git a/dmp-backend/Dockerfile b/dmp-backend/Dockerfile index 0377f3cf3..87a74372d 100644 --- a/dmp-backend/Dockerfile +++ b/dmp-backend/Dockerfile @@ -26,8 +26,6 @@ RUN mvn -Drevision=${REVISION} -DdevProfileUrl=${DEV_PROFILE_URL} -P${PROFILE} c ######################################## Run Stage ######################################## FROM eclipse-temurin:21-jre-alpine -WORKDIR /app - ARG PROFILE ARG REVISION ENV SERVER_PORT=8080 @@ -35,4 +33,4 @@ EXPOSE ${SERVER_PORT} COPY --from=build-stage /build/web/target/web-${REVISION}.jar /app.jar -ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-Dspring.profiles.active=${PROFILE}", "-Dspring.config.additional-location=/files/config/", "-cp", "/app/app.jar", "-Dloader.path=/files/repo-jars", "org.springframework.boot.loader.PropertiesLauncher"] \ No newline at end of file +ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-Dspring.profiles.active=${PROFILE}", "-Dspring.config.additional-location=file:/config/", "-jar", "/app/app.jar"] \ No newline at end of file diff --git a/dmp-backend/core/pom.xml b/dmp-backend/core/pom.xml index fce7f5b87..2aa4c67ac 100644 --- a/dmp-backend/core/pom.xml +++ b/dmp-backend/core/pom.xml @@ -3,7 +3,7 @@ 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"> 4.0.0 - + core ${revision} ${packaging.type} diff --git a/dmp-backend/pom.xml b/dmp-backend/pom.xml index 4aa20dc3b..f8044b48d 100644 --- a/dmp-backend/pom.xml +++ b/dmp-backend/pom.xml @@ -4,6 +4,7 @@ 4.0.0 eu.eudat dmp-backend + OpenDMP Backend Parent ${revision} pom @@ -293,6 +294,19 @@ + + cite-dev + + + cite-maven + CITE Maven Repository + https://crepo.cite.gr/repository/cite-maven/ + + + + true + + \ No newline at end of file