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

declare used transitive deps whose version we manage #142

Merged
merged 1 commit into from
Mar 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<jenkins.version>2.361.4</jenkins.version>
<no-test-jar>false</no-test-jar>
<!--
beware https://github.com/jenkinsci/plugin-pom/issues/705 and https://github.com/jenkinsci/plugin-pom/issues/707
if updating these ensure the used transitive deps that have their version managed are updated as direct dependencies and any unused ones are removed.
-->
<okio.version>3.3.0</okio.version>
<kotlin.version>1.8.10</kotlin.version>
</properties>
Expand Down Expand Up @@ -99,6 +103,34 @@
<version>2.35.0</version>
<scope>test</scope>
</dependency>

<!-- inline used transitive okhttp dependencies -->
<!-- no extra transitive deps used -->
<!-- inline used transitive okio dependencies -->
<!-- com.squareup.okio:okio-jvm is a transitive dep but does not have its version managed -->
<!-- inline used transitive kotlin dependencies -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>13.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk7</artifactId>
</dependency>

</dependencies>

<!-- get every artifact through maven.glassfish.org, which proxies all the artifacts that we need -->
Expand Down