Skip to content

Commit

Permalink
Merge pull request #25 from Workday/fix_plugin_annotations
Browse files Browse the repository at this point in the history
fix plugin annotations
  • Loading branch information
KennethNickles authored Jun 14, 2021
2 parents d03c41a + 1aba3df commit ab5accc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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<String> = 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<String> = 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<String> = emptyList()
@Option(option = "testClassRegexes", description = "regex for tests to be ran") set
}

0 comments on commit ab5accc

Please sign in to comment.