Commit 93b1ce35 authored by Kostis Trantzas's avatar Kostis Trantzas
Browse files

Merge branch...

Merge branch '4-create-a-pipeline-to-build-and-publish-the-mvn-package-in-gitlab-registry' into 'develop'

Resolve "Create a pipeline to build and publish the mvn package in gitlab registry"

See merge request !19
parents b577eca7 4f07baa0
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ updaterepo(){

        # Build maven project if .pom file is present
        if [ -f  "./pom.xml" ]; then
            docker run -it --rm -v "/home/ubuntu/.m2":/root/.m2 -v "$(pwd)":/opt/maven maven:3.9.5-ibm-semeru-17-focal mvn clean verify -DskipTests
            docker run -it --rm -v "/home/ubuntu/.m2":/root/.m2 -v "$(pwd)":/opt/maven -w /opt/maven maven:3.9.5-ibm-semeru-17-focal mvn clean verify -DskipTests
        fi
}