Package mojo.test

Source Code of mojo.test.TestIndexBuilderMojo

package mojo.test;

import mojo.IndexBuilderMojo;

import org.springframework.core.io.FileSystemResource;

class TestIndexBuilderMojo {

    public static void main(String[] args) throws Exception {
        IndexBuilderMojo builderMojo = new IndexBuilderMojo();
        FileSystemResource fileSystemResource = new FileSystemResource("src/main/resources/sample-lucene.xml");
        builderMojo.setConfigFileLocation(fileSystemResource.getFile().getAbsolutePath());
        builderMojo.execute();
    }
}
TOP

Related Classes of mojo.test.TestIndexBuilderMojo

TOP
Copyright © 2018 www.massapi.com. 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.