We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf05f5 commit 73f7ebeCopy full SHA for 73f7ebe
buildSrc/src/main/groovy/com/mindviewinc/plugins/TaggingPlugin.groovy
@@ -13,6 +13,10 @@ class TaggingPlugin implements Plugin<Project> {
13
void apply(Project project) {
14
boolean debug = project.hasProperty(DEBUG_PROJECT_PROPERTY_KEY) ? Boolean.valueOf(project.getProperty(DEBUG_PROJECT_PROPERTY_KEY)) : false
15
List createdTasks = []
16
+ boolean runningInCI = System.getenv('CI')
17
+ boolean runningInTravis = System.getenv('TRAVIS')
18
+ boolean runningInAppveyor = System.getenv('APPVEYOR')
19
+ // println "runningInCI: " + runningInCI
20
21
project.projectDir.eachFileRecurse { file ->
22
if (file.name.endsWith('.java')) {
0 commit comments