
com.theoryinpractise.coffeescript.CompileResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coffee-maven-plugin Show documentation
Show all versions of coffee-maven-plugin Show documentation
A Maven 2.0 plugin for compiling coffeescript into javascript
package com.theoryinpractise.coffeescript;
public class CompileResult {
private String js;
private String map;
public CompileResult(String js, String map) {
this.js = js;
this.map = map;
}
public String getJs() {
return js;
}
public String getMap() {
return map;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy