Package com.asakusafw.compiler.flow.packager

Examples of com.asakusafw.compiler.flow.packager.FilePackager


        config.setFactory(factory);
        config.setProcessors(new SpiFlowElementProcessorRepository());
        config.setExternals(new SpiExternalIoDescriptionProcessorRepository());
        config.setDataClasses(new SpiDataClassRepository());
        config.setGraphRewriters(new SpiFlowGraphRewriterRepository());
        config.setPackager(new FilePackager(workingDirectory, repositories));
        config.setRootPackageName(basePackageName);
        config.setRootLocation(baseLocation);
        config.setServiceClassLoader(serviceClassLoader);
        config.setOptions(flowCompilerOptions);
        config.setBuildId(UUID.randomUUID().toString());
View Full Code Here


    }

    private Packager createPackager(JobFlowClass jobflow) {
        assert jobflow != null;
        BatchCompilerConfiguration batch = getEnvironment().getConfiguration();
        return new FilePackager(
                new File(
                        new File(batch.getWorkingDirectory(), jobflow.getConfig().name()),
                        JOBFLOW_TEMPORARY),
                batch.getLinkingResources());
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.packager.FilePackager

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.