Skip to content

Commit

Permalink
remove java check
Browse files Browse the repository at this point in the history
  • Loading branch information
rjernst committed Oct 28, 2024
1 parent 5e8cfe7 commit 137a512
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions libs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,14 @@ configure(childProjects.values()) {
archivesName = baseArtifactId
}
subprojects {
plugins.withType(JavaPlugin).whenPluginAdded {
def subArtifactId = baseArtifactId
def currentProject = project
while (currentProject != baseProject) {
subArtifactId += "-${currentProject.name}"
currentProject = currentProject.parent
}
base {
archivesName = subArtifactId
}
def subArtifactId = baseArtifactId
def currentProject = project
while (currentProject != baseProject) {
subArtifactId += "-${currentProject.name}"
currentProject = currentProject.parent
}
base {
archivesName = subArtifactId
}
}

Expand Down

0 comments on commit 137a512

Please sign in to comment.