Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'cje-production/scripts/removeFromComposite.xml')
-rw-r--r--cje-production/scripts/removeFromComposite.xml22
1 files changed, 0 insertions, 22 deletions
diff --git a/cje-production/scripts/removeFromComposite.xml b/cje-production/scripts/removeFromComposite.xml
deleted file mode 100644
index 3a15a27f9..000000000
--- a/cje-production/scripts/removeFromComposite.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?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