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;

/* 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