All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zanata.maven.ListLocalMojo Maven / Gradle / Ivy

Go to download

Zanata client for managing projects, publishing source text and retrieving translations.

There is a newer version: 4.6.2
Show newest version
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";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy