You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2018/12/29 04:14:19 UTC

[maven-jenkins-lib] branch master updated: fix indent

This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new cda9dcf  fix indent
cda9dcf is described below

commit cda9dcffb1753a98cc7418f00d271911748af027
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Sat Dec 29 14:14:15 2018 +1000

    fix indent
---
 vars/asfMavenTlpPlgnBuild.groovy | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index 8c30013..6502fe8 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -50,13 +50,13 @@ def call(Map params = [:]) {
     boolean first = true
     for (String os in oses) {
       for (def mvn in mavens) {
-      def jdk = Math.max( jdkMin as Integer, jenkinsEnv.jdkForMaven( mvn ) as Integer) as String
-    jdks = jdks.findAll{ it != jdk }
-      doCreateTask( os, jdk, mvn, tasks, first, 'build', taskContext )
+        def jdk = Math.max( jdkMin as Integer, jenkinsEnv.jdkForMaven( mvn ) as Integer) as String
+        jdks = jdks.findAll{ it != jdk }
+        doCreateTask( os, jdk, mvn, tasks, first, 'build', taskContext )
       }
       for (def jdk in jdks) {
-      def mvn = jenkinsEnv.mavenForJdk(jdk)
-      doCreateTask( os, jdk, mvn, tasks, first, 'build', taskContext )
+        def mvn = jenkinsEnv.mavenForJdk(jdk)
+        doCreateTask( os, jdk, mvn, tasks, first, 'build', taskContext )
       }
       
       // doesn't work for multimodules yet