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;
/* Javadoc disabled 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.
*
* @goal list-local
* @author Sean Flanigan
*/
public class ListLocalMojo extends ConfigurableProjectMojo
{
public ListLocalMojo() throws Exception
{
super();
}
public ListLocalCommand initCommand()
{
return new ListLocalCommand(this);
}
@Override
public String getCommandName()
{
return "list-local";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy