Skip to content

Commit

Permalink
[backend] Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimfacion committed Oct 29, 2024
1 parent f466131 commit 7098663
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile_ga
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM openjdk:21-jdk-slim AS app

WORKDIR /opt
RUN apt update && apt install -y tini git --no-install-recommends
RUN apt update && apt-get install --only-upgrade glibc/libc-bin && apt install -y tini git --no-install-recommends
COPY openbas-build ./

ENTRYPOINT ["/usr/bin/tini", "--"]
Expand Down
13 changes: 10 additions & 3 deletions openbas-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<description>OpenBAS api</description>

<properties>
<bcpg-jdk15on.version>1.70</bcpg-jdk15on.version>
<bcpg-jdk18on.version>1.78.1</bcpg-jdk18on.version>
<commons-collections4.version>4.4</commons-collections4.version>
<commons-email.version>1.5</commons-email.version>
<opensaml.version>4.3.2</opensaml.version>
Expand All @@ -24,6 +24,7 @@
<apache-poi.version>5.3.0</apache-poi.version>
<opentelemetry.version>1.42.1</opentelemetry.version>
<opentelemetry-semconv.version>1.27.0-alpha</opentelemetry-semconv.version>
<flyway.version>10.20.1</flyway.version>
</properties>

<profiles>
Expand Down Expand Up @@ -104,8 +105,8 @@
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk15on</artifactId>
<version>${bcpg-jdk15on.version}</version>
<artifactId>bcpg-jdk18on</artifactId>
<version>${bcpg-jdk18on.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down Expand Up @@ -147,6 +148,12 @@
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>${flyway.version}</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
<version>${flyway.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand Down
1 change: 1 addition & 0 deletions openbas-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
<version>42.6.1</version>
</dependency>
<dependency>
<groupId>io.minio</groupId>
Expand Down

0 comments on commit 7098663

Please sign in to comment.