Package org.jetbrains.idea.maven.model

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

Related Classes of org.jetbrains.idea.maven.model.MavenResource

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.