com.baloise.maven.solr.SolrDeployer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-maven-plugin Show documentation
Show all versions of solr-maven-plugin Show documentation
A maven plugin to help develop and deploy SOLR based applications.
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
);
}
}