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

com.baloise.maven.solr.SolrDeployer Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.baloise.maven.solr;

import java.io.File;
import java.io.IOException;

import org.codehaus.plexus.util.FileUtils;

public class SolrDeployer {


  public static void main(String[] args) throws Exception{
    File dest = new File("C:\\Users\\Public\\dev\\ws\\gwt\\solr-maven-plugin\\target\\solr");
    File source = new File("C:\\Users\\Public\\dev\\ws\\gwt\\solr-some\\src\\solr\\resources" );
    deploy(dest, source);
  }

  private static void deploy(File dest, File source) throws IOException {
    dest.mkdirs();
    FileUtils.copyDirectoryStructure(
        source,
        dest
        );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy