Skip to content

Commit

Permalink
Fix Gradle deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wborn committed Jan 21, 2025
1 parent 830595b commit f2a0fdc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,10 @@ plugins.withType(JavaPlugin).whenPluginAdded {
// Allow dependencyInsight checks across all projects
tasks.register('allDependencyInsight', DependencyInsightReportTask) {}

// JAR/ZIP base name is the fully qualified subproject name
archivesBaseName = "${rootProject.name}${path.replaceAll(":", "-")}"
base {
// JAR/ZIP base name is the fully qualified subproject name
archivesName = "${rootProject.name}${path.replaceAll(":", "-")}"
}
}

// POM generator

0 comments on commit f2a0fdc

Please sign in to comment.