Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump okhttp-api from 4.10.0-125.v3593b_a_f8c97b_ to 4.10.0-127.vf711b_27a_f7fe in /bom-weekly #1851

2 changes: 1 addition & 1 deletion bom-weekly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>okhttp-api</artifactId>
<version>4.10.0-125.v3593b_a_f8c97b_</version>
<version>4.10.0-127.vf711b_27a_f7fe</version>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
Expand Down
34 changes: 21 additions & 13 deletions sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,6 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Require upper bound dependencies error from okhttp api plugin -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-bom</artifactId>
<version>${kotlin.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230227</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -175,6 +162,13 @@
<groupId>io.jenkins.plugins</groupId>
<artifactId>okhttp-api</artifactId>
<scope>test</scope>
<exclusions>
<!-- TODO conflict with configuration-as-code -->
<exclusion>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
Expand Down Expand Up @@ -321,6 +315,13 @@
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jackson2-api</artifactId>
<scope>test</scope>
<exclusions>
<!-- TODO conflict with configuration-as-code and slack -->
<exclusion>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -405,6 +406,13 @@
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>slack</artifactId>
<scope>test</scope>
<exclusions>
<!-- TODO conflict with configuration-as-code and jackson2-api -->
<exclusion>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down