Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 722bd28f authored by Rafael Tonholo's avatar Rafael Tonholo
Browse files

feat: introduce buildCliTools task

parent 885ad532
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -43,6 +43,13 @@ tasks.register("testsOnCi") {
    )
}

tasks.register("buildCliTools") {
    val cliToolsProjects = subprojects.filter { it.path.startsWith(":cli:") }
    dependsOn(
        cliToolsProjects.map { project -> project.tasks.named("build") },
    )
}

tasks.named<Wrapper>("wrapper") {
    gradleVersion = libs.versions.gradle.get()
    distributionType = Wrapper.DistributionType.ALL