Skip to content

Commit 748ee1e

Browse files
authored
Merge pull request #1362 from blackducksoftware/idetect-4610-fix-airgap-gradle-create-task
Update Create Gradle Airgap Script to contain only necessary dependency.
2 parents c8af0a9 + 3f5f5b3 commit 748ee1e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

documentation/src/main/markdown/currentreleasenotes.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111

1212
## Version 10.3.0
1313

14+
### Resolved issues
15+
16+
* (IDETECT-4610) - Improved [detect_product_short]'s air gap for Gradle creation script to prevent unwanted JAR files from being included in the gradle subdirectory.
17+
* (IDETECT-4611) - Updated [detect_product_short]'s air gap for Gradle creation script to remove reference to Integration Common library that is no longer a dependency.
18+
1419
### New features
1520

1621
* Added support for ArtifactsPath and BaseIntermediateOutputPath properties in [detect_product_long] NuGet Inspector.
@@ -25,4 +30,4 @@
2530

2631
### Dependency updates
2732

28-
* Upgraded and released NuGet Inspector version 2.1.0.
33+
* Upgraded and released NuGet Inspector version 2.1.0.

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

+1-5
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,10 @@ configurations {
99
}
1010

1111
dependencies {
12-
airGap 'com.synopsys.integration:integration-common:26.1.2'
12+
airGap 'org.slf4j:slf4j-api:2.0.7'
1313
}
1414

1515
task installDependencies(type: Copy) {
1616
from configurations.airGap
17-
include '*.jar'
18-
exclude '*jackson-core*.jar'
19-
exclude '*jackson-databind*.jar'
20-
exclude '*jackson-annotations*.jar'
2117
into "${gradleOutput}"
2218
}

0 commit comments

Comments
 (0)