Skip to content

Commit

Permalink
Merge pull request #542 from scireum/mke/SIRI-1036_lib_upgrades
Browse files Browse the repository at this point in the history
Upgrade library versions
  • Loading branch information
mkeckmkeck authored Dec 4, 2024
2 parents 0ba35fe + 6b5e9df commit c292ce7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clone:

steps:
- name: compile
image: scireum/sirius-build-jdk22
image: scireum/sirius-build-jdk23
commands:
- mvn clean compile
volumes: *scireum_volumes
Expand All @@ -28,7 +28,7 @@ steps:
- push

- name: cron_unit_tests
image: scireum/sirius-build-jdk22
image: scireum/sirius-build-jdk23
commands:
- mvn clean test
volumes: *scireum_volumes
Expand All @@ -48,7 +48,7 @@ steps:
- cron

- name: test
image: scireum/sirius-build-jdk22
image: scireum/sirius-build-jdk23
commands:
- mvn clean test -Dtest.excluded.groups=nightly
volumes: *scireum_volumes
Expand All @@ -57,7 +57,7 @@ steps:
- pull_request

- name: deploy
image: scireum/sirius-build-jdk22
image: scireum/sirius-build-jdk23
commands:
- sed -i 's/DEVELOPMENT-SNAPSHOT/${DRONE_TAG}/g' pom.xml
- mvn clean deploy -DskipTests
Expand All @@ -77,7 +77,7 @@ steps:
- tag

- name: sonar
image: scireum/sirius-build-jdk22
image: scireum/sirius-build-jdk23
commands:
- sed -i 's/DEVELOPMENT-SNAPSHOT/${DRONE_TAG}/g' pom.xml
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent test org.jacoco:jacoco-maven-plugin:report sonar:sonar -Dsonar.projectKey=${DRONE_REPO_NAME}
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.scireum</groupId>
<artifactId>sirius-parent</artifactId>
<version>12.1.1</version>
<version>13.0.0</version>
</parent>
<artifactId>sirius-kernel</artifactId>
<name>SIRIUS kernel</name>
Expand All @@ -32,21 +32,21 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.1.0-jre</version>
<version>33.3.1-jre</version>
</dependency>

<!-- JSR305 annotations like @Nonnull etc. -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.8.6</version>
</dependency>

<!-- Required logging bridge to make slf4j log to our logging system -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.13</version>
<version>2.0.16</version>
</dependency>

<!-- Used to auto-start Docker environments. Excluding dependencies not required for docker-compose. -->
Expand All @@ -69,7 +69,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version>
<version>2.18.0</version>
</dependency>
<!-- Required, as the version provided by docker-compose-rule-core has security issues -->
<dependency>
Expand Down

0 comments on commit c292ce7

Please sign in to comment.