workcraft/workcraft

View on GitHub
workcraft/WorkcraftRunner/build.gradle

Summary

Maintainability
Test Coverage
dependencies {
    rootProject.subprojects {
        if (it.name != this.name) {
            implementation it
        }
    }
}

task(run, dependsOn: 'classes', type: JavaExec) {
    group = 'Build'
    description = 'Run Workcraft with all available plugins'
    mainClass = 'org.workcraft.Console'
    classpath = sourceSets.main.runtimeClasspath
    workingDir = rootDir
}

jar.onlyIf { false }