Skip to content

Commit

Permalink
Consolidate pom dependency versions into variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
aclemons committed Jan 7, 2024
1 parent 312d71a commit 6eed70e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Build
pull_request:
branches: [master]
env:
# renovate: datasource=docker depName=saplabs/hanaexpress versioning=loose
# renovate: datasource=docker depName=saplabs/hanaexpress versioning=docker
HANA_DOCKER_IMAGE: saplabs/hanaexpress:2.00.072.00.20231123.1@sha256:48c804572334b42b1d91a0fd54c4d6320cd37141f632724c3ebb7e307f5d4bb9
jobs:
build:
Expand Down
12 changes: 7 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring.version>6.0.13</spring.version>
<slf4j.version>2.0.9</slf4j.version>
<junit.version>5.10.0</junit.version>
</properties>
<build>
<plugins>
Expand Down Expand Up @@ -183,12 +185,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.9</version>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>2.0.9</version>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
Expand All @@ -198,19 +200,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.1</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-migrationsupport</artifactId>
<version>5.10.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 6eed70e

Please sign in to comment.