~kendfinger-deactivatedaccount/jenkins/trunk

« back to all changes in this revision

Viewing changes to maven-plugin/src/main/java/hudson/maven/AbstractMavenBuilder.java

  • Committer: Kohsuke Kawaguchi
  • Date: 2013-02-16 19:40:51 UTC
  • mfrom: (11982.1.19)
  • Revision ID: git-v1:acd9f2c0407bc2f2a95c7e53c579170658044fe4
Merge branch 'master' of github.com:jenkinsci/jenkins

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
        }
200
200
    }
201
201
    
 
202
    protected boolean isDebug() {
 
203
        for(String goal : goals) {
 
204
            if (goal.equals("-X") || goal.equals("--debug"))  return true;
 
205
        }
 
206
        return false;
 
207
    }
 
208
    
 
209
    protected boolean isQuiet() {
 
210
        for(String goal : goals) {
 
211
            if (goal.equals("-q") || goal.equals("--quiet"))  return true;
 
212
        }
 
213
        return false;
 
214
    }
 
215
 
202
216
    protected static class FilterImpl extends MavenBuildProxy2.Filter<MavenBuildProxy2> implements Serializable {
203
217
        
204
218
        private MavenBuildInformation mavenBuildInformation;