diff --git a/gradle.properties b/gradle.properties index 356babd..2bbb69b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.1.0 +VERSION_NAME=1.1.1 GROUP=com.workday POM_DESCRIPTION=A Reactive Android instrumentation test orchestrator with multi-library-modules-testing and test pooling/grouping support. POM_URL=https://github.com/Workday/torque diff --git a/torque-gradle-plugin/src/main/kotlin/com/workday/torque/gradle/TorqueRunTask.kt b/torque-gradle-plugin/src/main/kotlin/com/workday/torque/gradle/TorqueRunTask.kt index c320f3c..56ca85a 100755 --- a/torque-gradle-plugin/src/main/kotlin/com/workday/torque/gradle/TorqueRunTask.kt +++ b/torque-gradle-plugin/src/main/kotlin/com/workday/torque/gradle/TorqueRunTask.kt @@ -1,14 +1,20 @@ package com.workday.torque.gradle import org.gradle.api.DefaultTask +import org.gradle.api.tasks.Input import org.gradle.api.tasks.options.Option open class TorqueRunTask: DefaultTask() { + @get: Input + @set: Option(option = "annotations", description = "annotations for tests to be ran") var includedAnnotations: List = emptyList() - @Option(option = "annotations", description = "annotations for tests to be ran") set + + @get: Input + @set: Option(option = "notAnnotations", description = "annotations for tests not to be ran") var excludedAnnotations: List = emptyList() - @Option(option = "notAnnotations", description = "annotations for tests not to be ran") set + + @get: Input + @set: Option(option = "testClassRegexes", description = "regex for tests to be ran") var testClassRegexes: List = emptyList() - @Option(option = "testClassRegexes", description = "regex for tests to be ran") set }