com.github.sdorra.buildfrontend.NodeConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of buildfrontend-maven-plugin Show documentation
Show all versions of buildfrontend-maven-plugin Show documentation
Installs and run node, npm or yarn as part of your maven build
package com.github.sdorra.buildfrontend;
public class NodeConfiguration {
private String version;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
}