Package org.impalaframework.build.ant

Examples of org.impalaframework.build.ant.GetTask


    public void setUp() throws MalformedURLException {
        File tmpDir = new File(System.getProperty("java.io.tmpdir"));
        downloadDir = new File(tmpDir, "downloads");
        downloadDir.mkdir();

        task = new GetTask();
        task.setBaseSourceUrls("http://ibiblio.org/pub/packages/maven2/,http://repository.jboss.com/maven2/");
        task.setToDir(downloadDir);
        task.setDependencies(new File("resources/test-dependencies.txt"));
        task.setProject(new Project());
    }
View Full Code Here


        File file = new File("../impala-core/resources/test-dependencies.txt");
        File toDir = downloadDir;
        String baseUrl = "http://ibiblio.org/pub/packages/maven2/";

        task = new GetTask();
        task.setBaseSourceUrls(baseUrl);
        task.setToDir(toDir);
        task.setDependencies(file);
        task.setProject(new Project());
        task.setFailOnError(true);
View Full Code Here

TOP

Related Classes of org.impalaframework.build.ant.GetTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.