astra.PwdCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-maven-plugin Show documentation
Show all versions of astra-maven-plugin Show documentation
This plugin can be used to support building of ASTRA applications.
package astra;
import java.io.File;
public class PwdCmd extends AbstractCmd {
public PwdCmd(File baseDir) {
super(baseDir);
}
public String[] getCommand() {
return new String[] { "pwd" };
}
}