com.cj.jshintmojo.jshint.EmbeddedJshintCode 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.jshint;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
public class EmbeddedJshintCode {
public static final Map EMBEDDED_VERSIONS = Collections.unmodifiableMap(new HashMap(){{
put("2.4.1", "jshint-rhino-2.4.1.js");
put("2.1.9", "jshint-rhino-2.1.9.js");
put("r12", "jshint-r12.js");
}});
}