Skip to content

Commit

Permalink
Fix Gradle deprecation warning (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
wborn authored Jan 29, 2025
1 parent 5e0a90b commit a663747
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 a663747

Please sign in to comment.