Skip to content

Commit

Permalink
Clean up dependencies (#1006)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Sep 25, 2024
1 parent 3e248b4 commit f349903
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 50 deletions.
57 changes: 8 additions & 49 deletions build-monitor-acceptance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,25 @@
<properties>
<byte-buddy.version>1.15.2</byte-buddy.version>
<serenity.version>4.2.1</serenity.version>
<slf4j.version>2.0.16</slf4j.version>
<!-- TODO until in parent POM -->
<maven.compiler.release>17</maven.compiler.release>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-bom</artifactId>
<version>10.0.23</version>
<version>10.0.24</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-bom</artifactId>
<version>2.0.16</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
Expand Down Expand Up @@ -76,36 +79,16 @@
<artifactId>commons-compress</artifactId>
<version>1.27.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.12.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -157,7 +140,6 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>net.serenity-bdd</groupId>
Expand Down Expand Up @@ -186,29 +168,6 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>display-info</id>
<configuration>
<rules>
<enforceBytecodeVersion>
<excludes combine.children="append">
<exclude>org.freemarker:freemarker</exclude>
</excludes>
</enforceBytecodeVersion>
<requireUpperBoundDeps>
<excludes combine.children="append">
<exclude>org.htmlunit:htmlunit</exclude>
</excludes>
</requireUpperBoundDeps>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
Expand Down
1 change: 0 additions & 1 deletion build-monitor-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
<dependency>
<groupId>com.sonyericsson.jenkins.plugins.bfa</groupId>
<artifactId>build-failure-analyzer</artifactId>
<version>2.5.2</version>
<optional>true</optional>
</dependency>
<dependency>
Expand Down

0 comments on commit f349903

Please sign in to comment.