com.github.sdorra.buildfrontend.Directories 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;
import javax.inject.Named;
import javax.inject.Singleton;
@Named
@Singleton
public class Directories {
private String workingDirectory;
private String buildDirectory;
public void setBuildDirectory(String buildDirectory) {
this.buildDirectory = buildDirectory;
}
public void setWorkingDirectory(String workingDirectory) {
this.workingDirectory = workingDirectory;
}
public String getBuildDirectory() {
return buildDirectory;
}
public String getWorkingDirectory() {
return workingDirectory;
}
}