Package org.jetbrains.osgi.jps.build

Examples of org.jetbrains.osgi.jps.build.FakeAnalyzer


   *
   * @param props   the properties
   * @param project the maven project.
   */
  static void postProcessAdditionalProperties(@NotNull Map<String, String> props, @NotNull MavenProject project) {
    Analyzer myFakeAnalyzer = new FakeAnalyzer(props);
    Collection<MavenArtifact> dependencies = collectDependencies(props, project);

    DependencyEmbedder embedder = new DependencyEmbedder(dependencies);
    try {
      embedder.processHeaders(myFakeAnalyzer);
View Full Code Here

TOP

Related Classes of org.jetbrains.osgi.jps.build.FakeAnalyzer

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.