diff --git a/features/org.eclipse.wtp.releng.tools.feature/feature.xml b/features/org.eclipse.wtp.releng.tools.feature/feature.xml
index e9a3505a8b029c1384bdef118a782f41f7ef56af..e117e415df05ff010feabca5a7b0de86e1c7acca 100644
--- a/features/org.eclipse.wtp.releng.tools.feature/feature.xml
+++ b/features/org.eclipse.wtp.releng.tools.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature
       id="org.eclipse.wtp.releng.tools.feature"
       label="%featureName"
-      version="1.1.2.qualifier"
+      version="1.1.3.qualifier"
       provider-name="%providerName">
 
    <description>
diff --git a/plugins/org.eclipse.wtp.releng.tools/META-INF/MANIFEST.MF b/plugins/org.eclipse.wtp.releng.tools/META-INF/MANIFEST.MF
index a79decb93740289909a37029b8f6ee29db602a6d..03b1091af3c1fa3635c8e4f93e94fd0f6debfcd3 100644
--- a/plugins/org.eclipse.wtp.releng.tools/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.wtp.releng.tools/META-INF/MANIFEST.MF
@@ -4,7 +4,7 @@ Bundle-Name: %Bundle-Name.0
 Bundle-SymbolicName: org.eclipse.wtp.releng.tools;singleton:=true
 Bundle-Activator: org.eclipse.wtp.releng.tools.Activator
 Bundle-ActivationPolicy: lazy
-Bundle-Version: 1.1.2.qualifier
+Bundle-Version: 1.1.3.qualifier
 Require-Bundle: org.eclipse.core.runtime,
  org.apache.ant;bundle-version="[1.6.5,2.0.0)",
  org.eclipse.equinox.p2.publisher,
diff --git a/plugins/org.eclipse.wtp.releng.tools/plugin.properties b/plugins/org.eclipse.wtp.releng.tools/plugin.properties
index 6252714b0b36f4e4f67d7b55025306fcafe47c26..9040d0f942706cae206a36158d270c5fe26511c9 100644
--- a/plugins/org.eclipse.wtp.releng.tools/plugin.properties
+++ b/plugins/org.eclipse.wtp.releng.tools/plugin.properties
@@ -1,3 +1,3 @@
 # properties file for org.eclipse.wtp.releng.tools
 Bundle-Name.0 = Releng Tools
-application.name = Add Mirror URL
\ No newline at end of file
+application.name = Add Repo Properties
\ No newline at end of file
diff --git a/plugins/org.eclipse.wtp.releng.tools/plugin.xml b/plugins/org.eclipse.wtp.releng.tools/plugin.xml
index b21b087f7bba28356ae59c438a2db1061f29db7e..3f13fefa699cd9b79a568e0803a5c453703bcdca 100644
--- a/plugins/org.eclipse.wtp.releng.tools/plugin.xml
+++ b/plugins/org.eclipse.wtp.releng.tools/plugin.xml
@@ -10,11 +10,13 @@
     <!-- Tasks -->
     <extension
         point="org.eclipse.ant.core.antTasks">
+        <!-- not ready 
         <antTask
             library="wtpRelengTools.jar"
-            name="addMirrorsURL"
-            class="org.eclipse.wtp.releng.tools.AddMirrorsURL">
+            name="addRepoProperties"
+            class="org.eclipse.wtp.releng.tools.AddRepoProperties">
         </antTask>
+        -->
         <antTask
             library="wtpRelengTools.jar"
             name="summarizeResults"
@@ -42,7 +44,7 @@
         </antTask>
     </extension>
     <extension
-        id="addmirrorsurl"
+        id="addRepoProperties"
         name="%application.name"
         point="org.eclipse.core.runtime.applications">
         <application
@@ -50,7 +52,7 @@
             thread="any"
             visible="true">
             <run
-                class="org.eclipse.wtp.releng.tools.AddMirrorsURLApplication">
+                class="org.eclipse.wtp.releng.tools.AddRepoPropertiesApplication">
             </run>
 
         </application>
diff --git a/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddMirrorsURL.java b/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddRepoProperties.java
similarity index 99%
rename from plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddMirrorsURL.java
rename to plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddRepoProperties.java
index 93a1a17ca5671842bda091e19cb84bf6690826cf..b6a9cf1b091c9ad8c778efdbd42b71966b2017a8 100644
--- a/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddMirrorsURL.java
+++ b/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddRepoProperties.java
@@ -23,7 +23,7 @@ import org.eclipse.equinox.p2.repository.artifact.IArtifactDescriptor;
 import org.eclipse.equinox.p2.repository.artifact.IArtifactRepository;
 import org.eclipse.equinox.p2.repository.artifact.spi.ArtifactDescriptor;
 
-public class AddMirrorsURL extends Task {
+public class AddRepoProperties extends Task {
 
     private static final String       IREPOSITORY_P2_STATS_URI = "p2.statsURI";
     private static final String       ARTIFACT_REPO_DIRECTORY  = "artifactRepoDirectory";
diff --git a/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddMirrorsURLApplication.java b/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddRepoPropertiesApplication.java
similarity index 83%
rename from plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddMirrorsURLApplication.java
rename to plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddRepoPropertiesApplication.java
index d959022a0a3e4604bc48c5a815d37366c4d63356..7cfef7a794fe9417789536df1bb20e7173b72731 100644
--- a/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddMirrorsURLApplication.java
+++ b/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/AddRepoPropertiesApplication.java
@@ -6,12 +6,12 @@ import org.eclipse.equinox.app.IApplication;
 import org.eclipse.equinox.app.IApplicationContext;
 import org.eclipse.equinox.p2.core.ProvisionException;
 
-public class AddMirrorsURLApplication implements IApplication {
+public class AddRepoPropertiesApplication implements IApplication {
 
     public Object start(IApplicationContext context) throws Exception {
         Object result = null;
         try {
-            new AddMirrorsURL().rewriteMirrorURL();
+            new AddRepoProperties().rewriteMirrorURL();
             result = IApplication.EXIT_OK;
         }
         catch (ProvisionException e) {