Skip to content

Commit

Permalink
Link againts API plugin including commons-compress because removal fr…
Browse files Browse the repository at this point in the history
…om core
  • Loading branch information
jonesbusy committed Nov 12, 2024
1 parent 07040fa commit 7a7440e
Showing 1 changed file with 19 additions and 36 deletions.
55 changes: 19 additions & 36 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.86</version>
<version>4.88</version>
</parent>
<groupId>com.checkmarx.jenkins</groupId>
<artifactId>checkmarx-ast-scanner</artifactId>
Expand Down Expand Up @@ -50,7 +50,8 @@
<changelist>-SNAPSHOT</changelist>
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.version>2.375.4</jenkins.version>
<jenkins.baseline>2.452</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.4</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
</properties>

Expand All @@ -60,8 +61,8 @@
<dependency>
<!-- Pick up common dependencies for the selected LTS line: https://github.com/jenkinsci/bom#usage -->
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.263.x</artifactId>
<version>984.vb5eaac999a7e</version>
<artifactId>bom-${jenkins.baseline}.x</artifactId>
<version>3654.v237e4a_f2d8da_</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -76,19 +77,20 @@
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.16.0</version>
<groupId>io.jenkins.plugins</groupId>
<artifactId>commons-lang3-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<groupId>io.jenkins.plugins</groupId>
<artifactId>commons-compress-api</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.2</version>
<groupId>io.jenkins.plugins</groupId>
<artifactId>gson-api</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jackson2-api</artifactId>
</dependency>
<dependency>
<groupId>com.checkmarx.ast</groupId>
Expand All @@ -100,9 +102,8 @@
<artifactId>structs</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.8.0</version>
<groupId>io.jenkins.plugins</groupId>
<artifactId>okhttp-api</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
Expand All @@ -113,17 +114,14 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>
<version>2.6.1.1</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-step-api</artifactId>
<version>2.24</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
<groupId>io.jenkins.plugins</groupId>
<artifactId>json-api</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
Expand Down Expand Up @@ -179,21 +177,6 @@
<!-- Build Settings -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins
</groupId> <!-- This override has been added for building with Java 11 -->
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<release>8</release>
</configuration>
</plugin>
<plugin>
<groupId>org.jenkins-ci.tools</groupId> <!-- This override has been added for building with Java 11 -->
<artifactId>maven-hpi-plugin</artifactId>
<version>3.53</version>
<extensions>true</extensions>
</plugin>
<!-- <plugin>-->
<!-- This override has been skipped for building with Java 11-->
<!-- <groupId>org.codehaus.mojo</groupId>-->
Expand Down

0 comments on commit 7a7440e

Please sign in to comment.