Examples of MavenResource


Examples of org.jetbrains.idea.maven.model.MavenResource

    // also scan for any "packageinfo" files lurking in the source folders
    List<String> packageInfoIncludes = Collections.singletonList("**/packageinfo");

    for (String sourceRoot : currentProject.getSources()) {
      MavenResource packageInfoResource = new MavenResource(sourceRoot, false, null, packageInfoIncludes, null);
      resources.add(packageInfoResource);
    }

    return resources;
  }
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.