Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
blob: 8e9ffbc2ab498973fca56dda7679ae8154a0177d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<setup:Product
    xmi:version="2.0"
    xmlns:xmi="http://www.omg.org/XMI"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
    xmlns:setup.p2="http://www.eclipse.org/oomph/setup/p2/1.0"
    name="oomph.installer"
    label="Oomph's Eclipse Installer">
  <annotation
      source="http://www.eclipse.org/oomph/setup/BrandingInfo">
    <detail
        key="imageURI">
      <value>http://www.eclipse.org/downloads/images/oomph-42x42.png</value>
    </detail>
    <detail
        key="folderName">
      <value>eclipse-installer</value>
    </detail>
    <detail
        key="folderName.macosx">
      <value>Eclipse Installer</value>
    </detail>
  </annotation>
  <version name="local"
      label="Local"
      requiredJavaVersion="1.7">
    <setupTask
        xsi:type="setup.p2:P2Task"
        label="Eclipse Installer">
      <requirement
          name="org.eclipse.oomph.setup.installer.product"/>
      <repository
          url="${oomph.product.update.url}"/>
    </setupTask>
  </version>
  <version name="latest"
      label="latest"
      requiredJavaVersion="11">
    <setupTask
        xsi:type="setup.p2:P2Task"
        label="Eclipse Installer">
      <requirement
          name="org.eclipse.oomph.setup.installer.product"/>
      <repository
          url="https://download.eclipse.org/oomph/products/repository"/>
    </setupTask>
  </version>
  <description>Oomph's Eclipse Installer product</description>
</setup:Product>

Back to the top