Skip to content

Commit

Permalink
Merge pull request #47 from abayer/jenkins-29063
Browse files Browse the repository at this point in the history
JENKINS-29063 - Switch default for per-Maven modules to false.
  • Loading branch information
Stefan Brausch committed Jun 25, 2015
2 parents 7a17fa8 + ca99247 commit 45118b4
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions src/main/java/hudson/plugins/jobConfigHistory/JobConfigHistory.java
@@ -1,5 +1,14 @@
package hudson.plugins.jobConfigHistory;

import javax.servlet.ServletException;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

import hudson.Plugin;
import hudson.XmlFile;
import hudson.maven.MavenModule;
Expand All @@ -10,20 +19,8 @@
import hudson.model.Saveable;
import hudson.model.TopLevelItem;
import hudson.util.FormValidation;

import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

import javax.servlet.ServletException;

import jenkins.model.Jenkins;
import net.sf.json.JSONObject;

import org.apache.commons.lang.StringUtils;
import org.kohsuke.stapler.QueryParameter;
import org.kohsuke.stapler.StaplerRequest;
Expand Down Expand Up @@ -79,7 +76,7 @@ public class JobConfigHistory extends Plugin {
private transient Pattern excludeRegexpPattern;

/** Flag to indicate if we should save the config history of Maven modules. */
private boolean saveModuleConfiguration;
private boolean saveModuleConfiguration = false;

/**
* Whether build badges should appear when the config of a job has changed since the last build.
Expand Down

0 comments on commit 45118b4

Please sign in to comment.