Skip to content

Commit

Permalink
Fix javdoc implicit dependencies - #1527
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Sep 26, 2023
1 parent 237761f commit 163cfd6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions java/src/IceGridGUI/plain-jar.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@
// Copyright (c) ZeroC, Inc. All rights reserved.
//

task copyTmpJars(type: Copy, dependsOn: jar) {
from new File("${projectDir}/build/libs/${tmpJarName}")
task copyTmpJars(type: Copy) {
from jar.archiveFile
into "${libDir}"
rename("${tmpJarName}", "${jarName}")

mustRunAfter ":ice:javadoc"
mustRunAfter ":icessl:javadoc"
mustRunAfter ":icelocatordiscovery:javadoc"
mustRunAfter ":icebox:javadoc"
mustRunAfter ":icestorm:javadoc"
mustRunAfter ":glacier2:javadoc"
mustRunAfter ":icegrid:javadoc"
}

task updateManifest(dependsOn: copyTmpJars) {
Expand Down

0 comments on commit 163cfd6

Please sign in to comment.