Skip to content

Commit cf9efd7

Browse files
gopannabdblackduck-serv-buildergopanna
authored
Fix Air Gap script for Gradle Inspector (#1350)
* Update create-gradle-airgap-script.ftl To fix jackson-core old version retention, override depenency brought back even though it is not needed. * Release 10.2.1-SIGQA1-idetect-4560-patch-for-airgap-script * Release 10.2.1-SIGQA2-idetect-4560-patch-for-airgap-script * Update create-gradle-airgap-script.ftl Added exclude filters for airgap installDependencies task. * Release 10.2.1-SIGQA3-idetect-4560-patch-for-airgap-script * Update create-gradle-airgap-script.ftl Updated group names * Update create-gradle-airgap-script.ftl Added dependency override for Jackson-Core * Update to airgap script * Release 10.2.1-SIGQA4-idetect-4560-patch-for-airgap-script * Using the next snapshot post release 10.2.1-SIGQA5-idetect-4560-patch-for-airgap-script-SNAPSHOT * Updated version and release notes. * Updated version and release notes. * Removed reference to Jackson-Core-2.15.0 as it is not needed for gradle detector. --------- Co-authored-by: blackduck-serv-builder <[email protected]> Co-authored-by: gopanna <[email protected]>
1 parent 93b9f46 commit cf9efd7

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

documentation/src/main/markdown/currentreleasenotes.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99

1010
<note type="note">It is recommended that customers continue to maintain sig-repo.synopsys.com, and repo.blackduck.com on their allow list until February 2025 when sig-repo.synopsys.com will be fully replaced by repo.blackduck.com.</note>
1111

12+
## Version 10.2.1
13+
14+
### Resolved issues
15+
16+
* (IDETECT-4560) - Fix to the FTL script used to build the [detect_product_short] Air Gap zips to prevent outdated JARs from being included.
17+
1218
## Version 10.2.0
1319

1420
### New features

src/main/resources/create-gradle-airgap-script.ftl

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repositories {
22
maven {
3-
url 'https://sig-repo.synopsys.com/bds-integration-public-cache/'
3+
url 'https://repo.blackduck.com/bds-integration-public-cache/'
44
}
55
}
66

@@ -15,5 +15,8 @@ dependencies {
1515
task installDependencies(type: Copy) {
1616
from configurations.airGap
1717
include '*.jar'
18+
exclude '*jackson-core*.jar'
19+
exclude '*jackson-databind*.jar'
20+
exclude '*jackson-annotations*.jar'
1821
into "${gradleOutput}"
1922
}

0 commit comments

Comments
 (0)