├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── RELEASE-NOTES.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── groovy │ └── com │ │ └── github │ │ └── paralleltasks │ │ ├── ParallelTasksExtension.groovy │ │ ├── ParallelTasksPlugin.groovy │ │ ├── RunParallelTasksTask.java │ │ └── TaskActionsExecutor.java └── resources │ └── META-INF │ └── gradle-plugins │ └── com.github.paralleltasks.properties └── test └── groovy └── com └── github └── paralleltasks ├── ParallelTasksExtensionTest.groovy ├── ParallelTasksPluginTest.groovy ├── RunParallelTasksTaskTest.groovy └── TaskActionsExecutorTest.groovy /.coveralls.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'parallel-tasks-gradle-plugin' 2 | -------------------------------------------------------------------------------- /src/main/groovy/com/github/paralleltasks/ParallelTasksExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/main/groovy/com/github/paralleltasks/ParallelTasksExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/paralleltasks/ParallelTasksPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/main/groovy/com/github/paralleltasks/ParallelTasksPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/paralleltasks/RunParallelTasksTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/main/groovy/com/github/paralleltasks/RunParallelTasksTask.java -------------------------------------------------------------------------------- /src/main/groovy/com/github/paralleltasks/TaskActionsExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/main/groovy/com/github/paralleltasks/TaskActionsExecutor.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/com.github.paralleltasks.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/main/resources/META-INF/gradle-plugins/com.github.paralleltasks.properties -------------------------------------------------------------------------------- /src/test/groovy/com/github/paralleltasks/ParallelTasksExtensionTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/test/groovy/com/github/paralleltasks/ParallelTasksExtensionTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/paralleltasks/ParallelTasksPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/test/groovy/com/github/paralleltasks/ParallelTasksPluginTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/paralleltasks/RunParallelTasksTaskTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/test/groovy/com/github/paralleltasks/RunParallelTasksTaskTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/paralleltasks/TaskActionsExecutorTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryearles/parallel-tasks-gradle-plugin/HEAD/src/test/groovy/com/github/paralleltasks/TaskActionsExecutorTest.groovy --------------------------------------------------------------------------------