distributions {
main {
contents {
// Explicitly link the task to avoid the 'implicit dependency' warning
from(tasks.named('buildRpm'))
from('ansible') {
into('ansible')
}
}
}
}
// Add these explicit dependencies to fix the 'SKIPPED' status
tasks.named('buildRpm') {
dependsOn tasks.named('jar')
}
tasks.named('distTar') {
dependsOn tasks.named('buildRpm')
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)