Community
Participate
Working Groups
Using the following ant task: <p2.composite.repository destination="file:/repo" > <remove location="I201101" /> <remove location="I201102" /> </p2.composite.repo> has two problems: 1) the repositories are added instead of removed 2) the relative URIs are made absolute using the current working directory before adding them Things work ok if you do this instead: <p2.composite.repository destination="file:/repo" > <remove> <repository location="I201101" /> <repository location="I201102" /> </remove> </p2.composite.repo>
fixed