Skip to main content
summaryrefslogtreecommitdiffstats
blob: 10c52c5be948655db949fc287458f409c2172732 (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
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<cs:cspec xmlns:cs="http://www.eclipse.org/buckminster/CSpec-1.0" name="org.eclipse.emf.cdo.releng" componentType="buckminster" version="3.0.0.qualifier">
    <cs:dependencies>
        <cs:dependency name="org.eclipse.emf.cdo.site" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.emf.cdo.formatchecker" componentType="osgi.bundle"/>
        <cs:dependency name="org.eclipse.emf.cdo.server.product" componentType="eclipse.feature"/>
        <cs:dependency name="org.gastro" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.equinox.executable" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.platform" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.platform.source" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.emf" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.emf.source" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.emf.teneo" componentType="eclipse.feature"/>
        <cs:dependency name="org.eclipse.emf.teneo.source" componentType="eclipse.feature"/>
        <cs:dependency name="com.mysql.jdbc" componentType="eclipse.feature"/>
        <cs:dependency name="org.apache.derby" componentType="eclipse.feature"/>
        <cs:dependency name="org.h2.jdbc" componentType="eclipse.feature"/>
        <cs:dependency name="org.hibernate" componentType="eclipse.feature"/>
        <cs:dependency name="org.hsqldb" componentType="eclipse.feature"/>
        <cs:dependency name="org.postgresql.jdbc3" componentType="eclipse.feature"/>
    </cs:dependencies>
    <cs:actions>
        <cs:public name="clear.site" actor="ant" always="true">
            <cs:actorProperties>
                <cs:property key="buildFile" value="buckminster.ant"/>
                <cs:property key="targets" value="clear.directory"/>
            </cs:actorProperties>
            <cs:properties>
                <cs:property key="directory" value="${cdo.download.area}/updates/3.0/"/>
            </cs:properties>
        </cs:public>
        <cs:public name="promote.site" actor="ant">
            <cs:actorProperties>
                <cs:property key="buildFileId" value="buckminster.pdetasks"/>
                <cs:property key="targets" value="copy.group"/>
            </cs:actorProperties>
            <cs:prerequisites alias="action.requirements">
                <cs:attribute name="site.p2" component="org.eclipse.emf.cdo.site"/>
                <cs:attribute name="clear.site" contributor="false"/>
            </cs:prerequisites>
            <cs:products alias="action.output" base="${cdo.download.area}/updates/3.0/"/>
        </cs:public>
        <cs:public name="promote.site.to.archive" actor="ant">
            <cs:actorProperties>
                <cs:property key="buildFileId" value="buckminster.pdetasks"/>
                <cs:property key="targets" value="copy.group"/>
            </cs:actorProperties>
            <cs:prerequisites alias="action.requirements">
                <cs:attribute name="site.p2.zip" component="org.eclipse.emf.cdo.site"/>
            </cs:prerequisites>
            <cs:products alias="action.output" base="${cdo.download.area}/archives/3.0/"/>
        </cs:public>
    </cs:actions>
    <cs:groups>
        <cs:public name="promote">
            <cs:attribute name="promote.site"/>
            <cs:attribute name="promote.site.to.archive"/>
        </cs:public>
    </cs:groups>
</cs:cspec>

Back to the top