Examples of OemVersion


Examples of com.instantiations.pde.build.util.OemVersion

    assertTrue(requiredPlugins.contains("org.eclipse.core.runtime"));
  }
 
  @Test
  public void testReadZipFile2() throws IOException {
    assertSubProductTest2(newSubProduct("Test2", new OemVersion("CodeGear", Version.V_3_2)));
  }
View Full Code Here

Examples of com.instantiations.pde.build.util.OemVersion

    assertSubProductTest2(newSubProduct("Test2", new OemVersion("CodeGear", Version.V_3_2)));
  }
 
  @Test
  public void testReadInfoFile2() throws IOException {
    assertSubProductTest2(newSubProduct("Test2", new OemVersion("CodeGear", Version.V_3_2)));
  }
View Full Code Here

Examples of com.instantiations.pde.build.util.OemVersion

    }
    catch (IOException e) {
      e.printStackTrace();
    }
    prop.set("preprocessor.ignore.variables", "none");
    this.processor = new PropertiesFilePreprocessor(new OemVersion(oemName, targetVersion), prop);
  }
View Full Code Here

Examples of com.instantiations.pde.build.util.OemVersion

    for (String projName : names) {
      for (Version eclipseTargetVersion : versions) {
        File projDir = FileUtil.copyFiles(new File(originalDir, projName), new File(tempDir, oemName + "/"
          + eclipseTargetVersion + "/" + projName));
        PluginProjectPreprocessor processor = new PluginProjectPreprocessor(new OemVersion(oemName, eclipseTargetVersion), "2.6.7.abc",
          prop);
        processor.processManifest(projDir);
        processor.processPluginProperties(projDir);
        assertEquals("JavaSE-1.6", processor.getExecutionEnvironment());
        processor.processBuildProperties(projDir);
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.