Scripts/convention/src/main/kotlin/jf.earlyafterevaluate.gradl...

10 lines
186 B
Plaintext
Raw Normal View History

import io.gitlab.jfronny.scripts.*
2022-10-07 19:05:03 +02:00
earlyAfterEvaluates = ArrayList()
2022-10-07 19:05:03 +02:00
afterEvaluate {
earlyAfterEvaluates!!.forEach {
2022-10-07 19:05:03 +02:00
it.execute(this)
}
earlyAfterEvaluates = null
2022-10-07 19:05:03 +02:00
}