Skip to content

Commit

Permalink
Update to Bamboo 9.3.3 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strohgelaender authored Sep 22, 2023
1 parent ec403a5 commit c8736fb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,24 @@ on:
- '!.github/workflows/**'

env:
java: 1.8
java: 11
java-distribution: "temurin"

jobs:

build:
runs-on: ubuntu-latest
steps:
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '${{ env.java }}'
- uses: actions/checkout@v2
distribution: '${{ env.java-distribution }}'
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -99,12 +101,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '${{ env.java }}'
- uses: actions/checkout@v2
distribution: '${{ env.java-distribution }}'
- uses: actions/checkout@v4
- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.tum.in.www1</groupId>
<artifactId>bamboo-server</artifactId>
<version>1.7.1</version>
<version>1.8.0</version>
<organization>
<name>LS1 TUM</name>
<url>https://ase.in.tum.de</url>
Expand All @@ -23,16 +23,16 @@
<description>Notify a Server when a build was executed.</description>
<packaging>atlassian-plugin</packaging>
<properties>
<bamboo.version>8.2.5</bamboo.version>
<bamboo.version>9.3.3</bamboo.version>
<bamboo.data.version>${bamboo.version}</bamboo.data.version>
<amps.version>8.2.3</amps.version>
<amps.version>8.10.1</amps.version>
<plugin.testrunner.version>1.2.3</plugin.testrunner.version>
<atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>
<platform.version>4.0.0</platform.version>
<jackson.version>2.13.4.2</jackson.version>
<spotless.version>2.27.2</spotless.version>
<junit-jupiter.version>5.9.2</junit-jupiter.version>
<mockito.version>5.1.1</mockito.version>
<platform.version>6.1.6</platform.version>
<jackson.version>2.15.2</jackson.version>
<spotless.version>2.39.0</spotless.version>
<junit-jupiter.version>5.10.0</junit-jupiter.version>
<mockito.version>5.5.0</mockito.version>
<!-- This key is used to keep the consistency between the key in atlassian-plugin.xml and the key to generate bundle. -->
<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -121,13 +121,13 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220924</version>
<version>20230618</version>
</dependency>
<dependency>
<!-- jsoup HTML parser library @ http://jsoup.org/ -->
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.15.3</version>
<version>1.16.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
Expand Down Expand Up @@ -168,8 +168,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>8</source>
<target>8</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit c8736fb

Please sign in to comment.