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

io.github.mmm.cli.nls.sync.NlsSynchronizer Maven / Gradle / Ivy

Go to download

Provides a command-line-interface to synchronize resource-bundles for localization.

The newest version!
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.cli.nls.sync;

import io.github.mmm.cli.CliMain;
import io.github.mmm.nls.NlsBundle;

/**
 * {@link CliMain Main program} (CLI) to synchronize resource bundles for localization from {@link NlsBundle} classes.
 */
public class NlsSynchronizer extends CliMain {

  @Override
  protected void addCommands() {

    super.addCommands();
    group().add(Synchronizer.class);
  }

  /**
   * @param args the CLI arguments.
   */
  public static void main(String[] args) {

    new NlsSynchronizer().runAndExit(args);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy