Skip to content

Commit

Permalink
jackson-core class isolation (api dependency -> implementation depend…
Browse files Browse the repository at this point in the history
…ency) (#39)

dependency class isolation
  • Loading branch information
fishinitself authored Dec 18, 2023
1 parent d1b73c1 commit 288de86
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ repositories {
}

dependencies {
api group: 'org.jfrog.buildinfo', name: 'build-info-extractor-gradle', version: project['jfrog-artifactory.version']
api group: 'org.octopusden.octopus.infrastructure', name: 'components-registry-service-client', version: '2.0.11'
api group: 'org.apache.httpcomponents', name: 'httpclient', version: project['httpclient.version']
api platform("com.fasterxml.jackson:jackson-bom:${project['jackson.version']}")
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
api group: 'com.platformlib.gradle-wrapper', name: 'platformlib-gradle-wrapper-plugin', version: project['com.platformlib.gradle-wrapper.version']
api group: 'org.cyclonedx', name: 'cyclonedx-gradle-plugin', version: project['cyclonedx.version']
implementation group: 'org.jfrog.buildinfo', name: 'build-info-extractor-gradle', version: project['jfrog-artifactory.version']
implementation group: 'org.octopusden.octopus.infrastructure', name: 'components-registry-service-client', version: '2.0.11'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: project['httpclient.version']
implementation platform("com.fasterxml.jackson:jackson-bom:${project['jackson.version']}")
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
implementation group: 'com.platformlib.gradle-wrapper', name: 'platformlib-gradle-wrapper-plugin', version: project['com.platformlib.gradle-wrapper.version']
implementation group: 'org.cyclonedx', name: 'cyclonedx-gradle-plugin', version: project['cyclonedx.version']
}

gradlePlugin {
Expand Down

0 comments on commit 288de86

Please sign in to comment.