com.cj.jshintmojo.cache.Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jshint-maven-plugin Show documentation
Show all versions of jshint-maven-plugin Show documentation
a maven mojo that integrates the 'jshint' javascript preprocessor
package com.cj.jshintmojo.cache;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
public class Cache implements Serializable {
private static final long serialVersionUID = 1L;
public final String options;
public final String globals;
public final Map previousResults;
public Cache(String options, String globals) {
this(options, globals, new HashMap());
}
public Cache(String options, String globals, Map previousResults) {
this.options = options;
this.globals = globals;
this.previousResults = previousResults;
}
}