Package ch.cmbntr.modulizer.plugin.util.ModuleDescriptors

Examples of ch.cmbntr.modulizer.plugin.util.ModuleDescriptors.ModuleDescriptorBuilder.dependencies()


  public ModuleDescriptorBuilder createDescriptor(final Iterable<String> resourceRootPaths) {
    final ModuleDescriptorBuilder desc = ModuleDescriptors.xmlDescriptor(this.name, this.slot);
    desc.mainClass(this.mainClass);
    desc.resourceRoots(resourceRootPaths);
    desc.dependencies(this.dependencies);
    return desc;
  }

  public StringBuilder getDirectoryPath() {
    final StringBuilder path = new StringBuilder(40);
View Full Code Here

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.