Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/dev-thomas' into dev-ernst
Browse files Browse the repository at this point in the history
  • Loading branch information
emelchinger committed Mar 15, 2024
2 parents 5c7ec61 + db33bb1 commit daf556e
Show file tree
Hide file tree
Showing 2,461 changed files with 29,795 additions and 13,499 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/install_all.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# install_all.yml
#
# (C) 2024 Dr. Bassler & Co. Managementberatung GmbH
#
# Installs the whole prosEO project and runs all tests
#
# @author Denys Chaykovskiy
#

name: Install all

Expand Down Expand Up @@ -62,6 +63,12 @@ jobs:
docker tag openjdk:11 localhost:5000/openjdk:11
docker push localhost:5000/openjdk:11
- name: Show current directory
run: pwd

- name: Add minio container for s3 testing
run: docker compose -f ./storage-mgr/src/test/resources/docker-compose.yml up -d

- name: Show docker images
run: docker images

Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/install_all_notests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# install_all_notests.yml
#
# (C) 2024 Dr. Bassler & Co. Managementberatung GmbH
#
# Installs the whole prosEO project without test execution
#
# @author Denys Chaykovskiy
#

name: Install all no tests

Expand Down
7 changes: 3 additions & 4 deletions api/aip-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>aip-client</artifactId>
Expand All @@ -18,7 +18,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<olingo.version>4.7.1</olingo.version>
<netty.version>4.1.48.Final</netty.version>
<main.basedir>${basedir}/../..</main.basedir>
Expand Down Expand Up @@ -188,14 +187,14 @@
<exec executable="docker" failonerror="true">
<arg value="build" />
<arg value="-t" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
7 changes: 3 additions & 4 deletions api/archive-mgr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>proseo-archive-mgr</artifactId>
Expand All @@ -18,7 +18,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<main.basedir>${basedir}/../..</main.basedir>
<raml-path>src/main/resources/raml/archive-mgr-api.raml</raml-path>
<raml-base-package>de.dlr.proseo.archivemgr.rest</raml-base-package>
Expand Down Expand Up @@ -161,14 +160,14 @@
<exec executable="docker" failonerror="true">
<arg value="build" />
<arg value="-t" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
7 changes: 3 additions & 4 deletions api/auxip-monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>auxip-monitor</artifactId>
Expand All @@ -17,7 +17,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<olingo.version>4.7.1</olingo.version>
<main.basedir>${basedir}/../..</main.basedir>
<raml-path>src/main/resources/raml/auxip-monitor-api.raml</raml-path>
Expand Down Expand Up @@ -197,14 +196,14 @@
<exec executable="docker" failonerror="true">
<arg value="build" />
<arg value="-t" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
3 changes: 1 addition & 2 deletions api/base-monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>proseo-base-monitor</artifactId>
Expand All @@ -19,7 +19,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<main.basedir>${basedir}/../..</main.basedir>
</properties>

Expand Down
7 changes: 3 additions & 4 deletions api/cadip-monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>cadip-monitor</artifactId>
Expand All @@ -17,7 +17,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<olingo.version>4.7.1</olingo.version>
<main.basedir>${basedir}/../..</main.basedir>
<raml-path>src/main/resources/raml/cadip-monitor-api.raml</raml-path>
Expand Down Expand Up @@ -203,14 +202,14 @@
<exec executable="docker" failonerror="true">
<arg value="build" />
<arg value="-t" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
7 changes: 3 additions & 4 deletions api/edip-monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>edip-monitor</artifactId>
Expand All @@ -17,7 +17,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<main.basedir>${basedir}/../..</main.basedir>
<raml-path>src/main/resources/raml/edip-monitor-api.raml</raml-path>
<raml-base-package>de.dlr.proseo.api.edipmon.rest</raml-base-package>
Expand Down Expand Up @@ -178,14 +177,14 @@
<exec executable="docker" failonerror="true">
<arg value="build" />
<arg value="-t" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
7 changes: 3 additions & 4 deletions api/odip/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>odip</artifactId>
Expand All @@ -22,7 +22,6 @@

<properties>
<olingo.version>4.7.1</olingo.version>
<module.version>1.0.0</module.version>
<main.basedir>${basedir}/../..</main.basedir>
<raml-path-query>src/main/resources/raml/odip-query.raml</raml-path-query>
<raml-path-oauth2>src/main/resources/raml/odip-oauth2.raml</raml-path-oauth2>
Expand Down Expand Up @@ -265,15 +264,15 @@
<arg value="build" />
<arg value="-t" />
<arg
value="${docker.registry}/${project.build.finalName}:${module.version}" />
value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg
value="${docker.registry}/${project.build.finalName}:${module.version}" />
value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>proseo-api</artifactId>
Expand Down
7 changes: 3 additions & 4 deletions api/prip/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>proseo-api-prip</artifactId>
Expand All @@ -19,7 +19,6 @@

<properties>
<olingo.version>4.7.1</olingo.version>
<module.version>1.0.0</module.version>
<main.basedir>${basedir}/../..</main.basedir>
<raml-path-query>src/main/resources/raml/prip-query.raml</raml-path-query>
<raml-path-download>src/main/resources/raml/prip-download.raml</raml-path-download>
Expand Down Expand Up @@ -254,14 +253,14 @@
<exec executable="docker" failonerror="true">
<arg value="build" />
<arg value="-t" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
7 changes: 3 additions & 4 deletions api/xbip-monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo-api</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>xbip-monitor</artifactId>
Expand All @@ -17,7 +17,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<main.basedir>${basedir}/../..</main.basedir>
<raml-path>src/main/resources/raml/xbip-monitor-api.raml</raml-path>
<raml-base-package>de.dlr.proseo.api.xbipmon.rest</raml-base-package>
Expand Down Expand Up @@ -172,14 +171,14 @@
<exec executable="docker" failonerror="true">
<arg value="build" />
<arg value="-t" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
<arg value="--platform" />
<arg value="${project.build.platform}" />
<arg value="." />
</exec>
<exec executable="docker" failonerror="true">
<arg value="push" />
<arg value="${docker.registry}/${project.build.finalName}:${module.version}" />
<arg value="${docker.registry}/${project.build.finalName}:${project.version}" />
</exec>
</target>
</configuration>
Expand Down
3 changes: 1 addition & 2 deletions base-wrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>proseo-base-wrapper</artifactId>
Expand All @@ -19,7 +19,6 @@
</organization>

<properties>
<module.version>1.0.0</module.version>
<resteasy.version>3.14.0.Final</resteasy.version>
<!-- Properties below to raise dependencies from Spring Boot 2.1.6 to Resteasy 3.14.0 -->
<commons-codec.version>1.14</commons-codec.version>
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.dlr.proseo</groupId>
<artifactId>proseo</artifactId>
<version>1.0.0</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>proseo-common</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM localhost:5000/proseo-aip-client:1.0.0
FROM localhost:5000/proseo-aip-client:1.0.1-SNAPSHOT
ADD application.yml /usr/share/api/aip-client/application.yml
WORKDIR /usr/share/api/aip-client

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM localhost:5000/proseo-api-odip:1.0.0
FROM localhost:5000/proseo-api-odip:1.0.1-SNAPSHOT
ADD application.yml /usr/share/api/odip/application.yml
WORKDIR /usr/share/api/odip

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM localhost:5000/proseo-api-prip:1.0.0
FROM localhost:5000/proseo-api-prip:1.0.1-SNAPSHOT
ADD application.yml /usr/share/api/prip/application.yml
WORKDIR /usr/share/api/prip

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM localhost:5000/proseo-archive-mgr:1.0.0
FROM localhost:5000/proseo-archive-mgr:1.0.1-SNAPSHOT
ADD application.yml /usr/share/proseo-archive-mgr/application.yml
WORKDIR /usr/share/proseo-archive-mgr/
Loading

0 comments on commit daf556e

Please sign in to comment.