Skip to content

Commit

Permalink
Development: Update dependencies (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strohgelaender authored Feb 15, 2023
1 parent 0d3a76b commit fb4f36e
Showing 1 changed file with 22 additions and 14 deletions.
36 changes: 22 additions & 14 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.0</version>
<version>1.7.1</version>
<organization>
<name>LS1 TUM</name>
<url>https://ase.in.tum.de</url>
Expand All @@ -23,18 +23,19 @@
<description>Notify a Server when a build was executed.</description>
<packaging>atlassian-plugin</packaging>
<properties>
<bamboo.version>8.1.3</bamboo.version>
<bamboo.version>8.2.5</bamboo.version>
<bamboo.data.version>${bamboo.version}</bamboo.data.version>
<amps.version>6.3.21</amps.version>
<amps.version>8.2.3</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.2</jackson.version>
<spotless.version>2.21.0</spotless.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<mockito.version>4.3.1</mockito.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>
<!-- 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>
</properties>
<repositories>
<repository>
Expand Down Expand Up @@ -120,18 +121,24 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20211205</version>
<version>20220924</version>
</dependency>
<dependency>
<!-- jsoup HTML parser library @ http://jsoup.org/ -->
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.14.3</version>
<version>1.15.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.2.1</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>de.tum.in.ase</groupId>
Expand All @@ -143,7 +150,7 @@
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-bamboo-plugin</artifactId>
<artifactId>bamboo-maven-plugin</artifactId>
<version>${amps.version}</version>
<extensions>true</extensions>
<configuration>
Expand All @@ -154,11 +161,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>8</source>
<target>8</target>
Expand Down

0 comments on commit fb4f36e

Please sign in to comment.