org.zanata.maven.ListLocalMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zanata-maven-plugin Show documentation
Show all versions of zanata-maven-plugin Show documentation
Zanata client for managing projects, publishing
source text and retrieving translations.
package org.zanata.maven;
import org.zanata.client.commands.ConfigurableProjectOptions;
import org.zanata.client.commands.ListLocalCommand;
/* @Mojo commented out so that maven won't include this unfinished mojo in the plugin:
* [NOT YET IMPLEMENTED] Lists all local files in the project which are
* considered to be Zanata documents. These are the files which will be sent to
* Zanata when using the 'push' goal.
* @author Sean Flanigan [email protected]
*/
//@Mojo(name = "list-local", requiresProject = false)
public class ListLocalMojo extends
ConfigurableProjectMojo {
public ListLocalMojo() throws Exception {
super();
}
public ListLocalCommand initCommand() {
return new ListLocalCommand(this);
}
@Override
public String getCommandName() {
return "list-local";
}
}