Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1e2742ec4b7a46a9a1054fad215ad1f9b17dd287 (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
<?xml version="1.0" encoding="UTF-8"?>
<feature
      id="org.eclipse.egit.gitflow.feature"
      label="%featureName"
      version="5.10.0.qualifier"
      provider-name="%providerName"
      plugin="org.eclipse.egit.gitflow"
      license-feature="org.eclipse.license"
      license-feature-version="0.0.0">

   <description url="https://www.eclipse.org/egit/">
      %description
   </description>

   <copyright>
      %copyright
   </copyright>

   <license url="%licenseURL">
      %license
   </license>

   <url>
      <update label="%updateSiteName" url="https://download.eclipse.org/egit/updates"/>
      <discovery label="%updateSiteName" url="https://download.eclipse.org/egit/updates"/>
   </url>

   <requires>
      <import feature="org.eclipse.jgit" version="5.10.0" match="equivalent"/>
      <import plugin="org.eclipse.egit.core" version="5.10.0" match="equivalent"/>
      <import plugin="org.eclipse.egit.ui" version="5.10.0" match="equivalent"/>
   </requires>

   <plugin
         id="org.eclipse.egit.gitflow"
         download-size="0"
         install-size="0"
         version="0.0.0"
         unpack="false"/>

   <plugin
         id="org.eclipse.egit.gitflow.ui"
         download-size="0"
         install-size="0"
         version="0.0.0"
         unpack="false"/>

</feature>

Back to the top