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

com.codename1.maven.InstallCodenameOneMojo Maven / Gradle / Ivy

There is a newer version: 7.0.164
Show newest version
package com.codename1.maven;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;

import java.io.File;

@Mojo(name="install-codenameone")
public class InstallCodenameOneMojo extends AbstractCN1Mojo {
    @Override
    protected void executeImpl() throws MojoExecutionException, MojoFailureException {
        File cn1Dir = new File(System.getProperty("user.home"), ".codenameone");
        if (!cn1Dir.exists()) {
            getLog().info("Installing Codename One to "+cn1Dir);
            updateCodenameOne(true);
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy