Skip to content

Commit 724083c

Browse files
committed
Build: Ensure the util sub projects are ignored when publishing
JAVA-4460
1 parent d853ef2 commit 724083c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gradle/deploy.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
def deployedProjects = subprojects.findAll { !['util'].contains(it.name) }
17+
def utilProjects = project(":util").allprojects
18+
def deployedProjects = subprojects - utilProjects
19+
1820
configure(deployedProjects) {
1921

2022
def isScala = project.name.contains('scala')

0 commit comments

Comments
 (0)