Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 3a15a27f9c238bcec12109875bb25dbc216ab45c (plain) (tree)





















                                                                                              
<?xml version="1.0" encoding="UTF-8"?>

<project
    default="removeFromComposite"
    basedir=".">
    <target name="removeFromComposite">
        <fail unless="repodir" message="repodir must be passed in to this script" />
        <fail unless="complocation" message="complocation must be passed in to this script" />
        <echo message="Removing child (complocation) to composite (repodir)" />
        <echo message="    repodir: ${repodir}" />
        <echo message="    complocation: ${complocation}" />
        <p2.composite.repository>
            <repository
                location="file://${repodir}"
                name="The Eclipse Project repository" />
            <remove>
                <repository location="${complocation}" />
            </remove>
        </p2.composite.repository>
    </target>
</project>

Back to the top