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

com.redhat.ceylon.maven.Main Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.maven;

import com.redhat.ceylon.common.ModuleSpec;
import com.redhat.ceylon.common.tools.CeylonTool;
import com.redhat.ceylon.tools.importjar.CeylonImportJarTool;

import java.io.File;

/**
 * @author Julien Viet
 */
public class Main {

  public static void main(String[] args) throws Exception {
    CeylonImportJarTool tool = new CeylonImportJarTool();

    tool.setDescriptor(new File("/Users/julien/java/vertx-lang-ceylon/descriptors/org.hamcrest.hamcrest-core.properties"));
    tool.setFile(new File("/Users/julien/java/vertx-lang-ceylon/target/jars/hamcrest-core-1.3.jar"));
    tool.setModuleSpec(new ModuleSpec("maven", "org.hamcrest.hamcrest-core", "1.3"));

    tool.initialize(new CeylonTool());

    tool.run();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy