We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd2531b commit e96c72fCopy full SHA for e96c72f
build.gradle
@@ -19,7 +19,10 @@ plugins {
19
}
20
21
deploy {
22
- dirs = subprojects.collect { e -> e.layout.buildDirectory.dir("repo").get().getAsFile() }
+ dirs = subprojects.stream()
23
+ .map(e -> e.layout.buildDirectory.dir("repo").get().getAsFile())
24
+ .filter(e -> e.exists())
25
+ .toList()
26
username = System.getenv("MAVENCENTRAL_USERNAME")
27
password = System.getenv("MAVENCENTRAL_PASSWORD")
28
publishingType = io.github.danielliu1123.deployer.PublishingType.AUTOMATIC
0 commit comments