Clean up. Remove unused content.
Change-Id: I6f6a612564003d13addde8e489af9cb4de887cde
Signed-off-by: Wayne Beaton <wayne.beaton@eclipse-foundation.org>
diff --git a/.cvsignore b/.cvsignore
deleted file mode 100644
index ab8bae9..0000000
--- a/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-_private
-_vti_cnf
-_vti_pvt
diff --git a/.htaccess b/.htaccess
deleted file mode 100644
index 752ee0c..0000000
--- a/.htaccess
+++ /dev/null
@@ -1,7 +0,0 @@
-# Redirect requests to an old "project summary" page to the new fangled "project" page.
-RewriteEngine On
-RewriteCond %{REQUEST_URI} ^/projects/project_summary\.php$
-RewriteCond %{QUERY_STRING} ^projectid=(.+)$
-RewriteRule ^(.*)$ http://www.eclipse.org/projects/project.php?id=%1 [R=302,L]
-
-Redirect permanent "/projects/status.php" http://www.eclipse.org/projects/tools/status.php
\ No newline at end of file
diff --git a/buttons.css b/buttons.css
deleted file mode 100644
index 0089e93..0000000
--- a/buttons.css
+++ /dev/null
@@ -1,52 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Wayne Beaton (Eclipse Foundation)- initial API and implementation
- *******************************************************************************/
-.cell {
- #position:relative;
- #background-color:#F0F0F0;
- background-position: 5px 5px;
- background-repeat:no-repeat;
- #border-style:solid;
- border-width:1px;
- #-moz-border-radius:12px;
- margin:5px;
- padding-left: 68px;
- padding-top: 5px;
- padding-right: 10px;
- height:75px;
- width:150px;
- float:left;
- text-align:left;
- #vertical-align:top;
-}
-
-.cell:hover {
- text-decoration:underline;
- border-style:solid;
- background-color:#F0F0F0;
- -moz-border-radius:12px;
- border-radius:12px;
- width:148px;
- height:73px;
-}
-
-.cell h3 {
- font-size:12px;
- font-weight:bold;
- margin: 0px 0px 0px 5px;
- padding: 0 0 0 0;
- text-wrap:none;
-}
-
-.cell p {
- font-size:12px;
- margin: 0px 0px 0px 5px;
- padding: 0 0 0 0;
-}
\ No newline at end of file
diff --git a/classes/Project.class.php b/classes/Project.class.php
index 522398a..7a91998 100644
--- a/classes/Project.class.php
+++ b/classes/Project.class.php
@@ -253,11 +253,11 @@
}
public static function visit($callable, $pre = null, $post = null) {
- if ($pre) call_user_func($pre);
+ if ($pre) call_user_func($pre, null);
foreach (self::getTopLevelProjects() as $project) {
$project->visitHierarchy($callable, $pre, $post, 0);
}
- if ($post) call_user_func($post);
+ if ($post) call_user_func($post, null);
}
private static function getProjects($conditions) {
@@ -981,7 +981,8 @@
if (!empty($field['safe_value']))
return $field['safe_value'];
$value = $field['value'];
- return explode("\n", $value)[0];
+ $paragraphs = explode("\n", $value);
+ return $paragraphs[0];
}
public function getScope() {
@@ -1293,69 +1294,6 @@
return strcasecmp($a->getTopLevelProject()->getName(), $b->getTopLevelProject()->getName());
}
-class ProjectBundlePatterns {
- static $patterns;
-
- public static function getAll() {
- self::load();
- return self::$patterns;
- }
-
- public function getPatterns($id) {
- self::load();
- return @self::$patterns[$id];
- }
-
- private static function load() {
- if (self::$patterns !== null) return;
-
- self::$patterns = array();
-
- foreach(Project::getActiveProjects() as $project) {
- $id = $project->getId();
- if ($project->getShortId() == 'incubator') continue;
- self::$patterns[$id] = array(
- 'forge' => $project->getForge()->getId(),
- 'id' => $project->getLocalId(),
- 'shortname' => $project->getShortId(),
- 'name' => $project->getName()
- );
- }
-
- $mvnRegex = '([\w\-\*\.]+):([\w\-\*\.]+):([\w\-\*\.]+):([\w\-\*\.]+)';
- if ($fp = fopen(dirname(__FILE__) . '/../ip-check/cq-map.txt', 'r')) {
- while ($line = fgets($fp)) {
- if (preg_match('/\s*([a-z][a-z0-9-_.]+),\s*(\(.*\))/', $line, $matches)) {
- $id = $matches[1];
- if (!isset(self::$patterns[$id])) continue;
- $expression = $matches[2];
- if (!in_array($expression,self::$patterns[$id]['expressions'])) {
- self::$patterns[$id]['expressions'][] = $expression;
- }
- } elseif (preg_match("/^([a-z][a-z0-9-_.]+),\\s*$mvnRegex/", $line, $matches)) {
- $id = $matches[1];
- // Skip things that aren't projects.
- if (!isset(self::$patterns[$id])) continue;
- $groupid = $matches[2];
- $artifactid = $matches[3];
- $version = $matches[4] == 'jar' ? $matches[5] : $matches[4];
- $maven = "$groupid:$artifactid:$version";
- if (!in_array($maven, self::$patterns[$id]['maven'])) {
- self::$patterns[$id]['maven'][] = $maven;
- }
- } elseif (preg_match('/^([a-z][a-z0-9-_.]+),\s*(.+\.jar)/i', $line, $matches)) {
- $id = $matches[1];
- $bundle = $matches[2];
- if (!in_array($bundle, self::$patterns[$id]['bundles'])) {
- self::$patterns[$id]['bundles'][] = $bundle;
- }
- }
- }
- fclose($fp);
- }
- }
-}
-
// Initialize the class
Project::init();
?>
\ No newline at end of file
diff --git a/classes/ProjectStatusReporter.class.inc b/classes/ProjectStatusReporter.class.inc
index b68345c..6496ae3 100644
--- a/classes/ProjectStatusReporter.class.inc
+++ b/classes/ProjectStatusReporter.class.inc
@@ -522,22 +522,6 @@
return '--';
return $value;
}
-
- public function getLivelinessIcon($liveliness) {
- global $images;
- switch ($liveliness) {
- case PROJECT_LIVELINESS_NEVER_ACTIVE :
- return $images->tools_small;
- case PROJECT_LIVELINESS_ACTIVE :
- return $images->active_small;
- case PROJECT_LIVELINESS_STALE :
- return $images->stale_small;
- case PROJECT_LIVELINESS_INACTIVE :
- return $images->inactive_small;
- case PROJECT_LIVELINESS_DEAD :
- return $images->dead_small;
- }
- }
}
class ProjectStatusReporterColumn {
var $id, $config, $data;
diff --git a/classes/TestRunner.class.php b/classes/TestRunner.class.php
deleted file mode 100644
index 1595b4c..0000000
--- a/classes/TestRunner.class.php
+++ /dev/null
@@ -1,142 +0,0 @@
-<?php
-require_once(dirname(__FILE__) . '/debug.php');
-trace_file_info(__FILE__);
-
-class TestRunner {
- var $target;
-
- function TestRunner($target) {
- $this->target = $target;
- }
-
- function run_tests() {
- $methods = get_class_methods($this->target);
- if (!$methods) return;
- foreach($methods as $method) {
- if (substr($method, 0, 4) == 'test') {
- $this->run_test($method);
- }
- }
- $this->showTrace();
- }
-
- function showTrace() {
- echo get_trace_html();
- }
-
- function displayStartTest($name) {
- echo "<h1>Running test: $name</h1><blockquote>";
- }
-
- function displayError($message) {
- echo "<p><font color=\"red\">$message</font></p>";
- }
-
- function displayEndTest($name) {
- echo "</blockquote>";
- }
-
- function run_test(&$test) {
- $name = "$this->target#$test";
- $this->displayStartTest($name);
- try {
- $instance = new $this->target($this);
- $instance->setUp();
- $instance->$test();
- } catch (TestFailedException $e) {
- // Ignore
- } catch (Exception $e) {
- $message = $e->getMessage();
- $this->displayError("An unhandled exception occurred while running $test: $message");
- }
- $instance->tearDown();
- $this->displayEndTest($name);
- }
-}
-
-class TextTestRunner extends TestRunner {
- function showTrace() {
- echo get_trace_text();
- }
-
- function displayStartTest($name) {
- echo "=== Running test: $name\n";
- }
-
- function displayError($message) {
- echo "*** $message\n";
- }
-
- function displayEndTest($name) {
- echo "\n\n";
- }
-}
-
-class TestFailedException extends Exception {
-}
-
-class TestCase {
- var $runner;
-
- function __construct($runner) {
- $this->runner = $runner;
- }
-
- function setUp() {
- }
-
- function tearDown() {
- }
-
- function fail($message) {
- $this->runner->displayError("Test failed: $message");
- throw new TestFailedException();
- }
-
- function assertEquals($expected, $actual) {
- if ($expected != $actual) {
- $this->runner->displayError("Expected \"$expected\" but found \"$actual\"");
- throw new TestFailedException();
- }
- }
-
- function assertNull($actual) {
- if ($actual !== null) {
- $this->runner->displayError("Expected null but found \"$actual\"");
- throw new TestFailedException();
- }
- }
-
- function assertNotNull($actual) {
- if ($actual === null) {
- $this->runner->displayError("Expected a value, but got null.");
- throw new TestFailedException();
- }
- }
-
- function assertTrue($value) {
- if (!$value) {
- $this->runner->displayError("Expected true value (or equivalent).");
- throw new TestFailedException();
- }
- }
-
- function assertFalse($value) {
- if ($value) {
- $this->runner->displayError("Expected false value (or equivalent).");
- throw new TestFailedException();
- }
- }
-
- /**
- * This function attempts to assert the sameness of the two parameters.
- */
- function assertSame($value1, $value2) {
- if ($value1 !== $value2) {
- $this->runner->displayError("Values are not identical");
- throw new TestFailedException();
- }
- }
-}
-?>
-
diff --git a/classes/images.inc b/classes/images.inc
deleted file mode 100644
index 431ace4..0000000
--- a/classes/images.inc
+++ /dev/null
@@ -1,104 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2011 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Wayne Beaton - initial API and implementation
- *******************************************************************************/
-
-$tango = "http://dev.eclipse.org";
-$tangoSmall = "$tango/small_icons";
-$tangoLarge = "$tango/large_icons";
-$tangoHuge = "$tango/huge_icons";
-
-$images->rss = '/projects/images/rss.gif';
-$images->check = '/projects/images/ok.gif';
-
-$images->review_documentation_small = "$tangoSmall/mimetypes/x-office-presentation.png";
-$images->review_documentation_large = "$tangoLarge/mimetypes/x-office-presentation.png";
-$images->review_documentation_huge = "$tangoHuge/mimetypes/x-office-presentation.png";
-
-$images->whats_new_small = "$tangoSmall/apps/internet-news-reader.png";
-$images->whats_new_large = "$tangoLarge/apps/internet-news-reader.png";
-$images->whats_new_huge = "$tangoHuge/apps/internet-news-reader.png";
-
-$images->projects_small = "$tangoSmall/emblems/emblem-system.png";
-$images->projects_large = "$tangoLarge/emblems/emblem-system.png";
-$images->projects_huge = "$tangoHuge/emblems/emblem-system.png";
-
-$images->new_project_small = "$tangoSmall/actions/folder-new.png";
-$images->new_project_large = "$tangoLarge/actions/folder-new.png";
-$images->new_project_huge = "$tangoHuge/actions/folder-new.png";
-
-$images->emeritus_small = "$tangoSmall/emotes/face-smile.png";
-$images->emeritus_large = "$tangoLarge/emotes/face-smile.png";
-$images->emeritus_huge = "$tangoHuge/emotes/face-smile.png";
-
-$images->portal_small = "$tangoSmall/apps/preferences-system-network-proxy.png";
-$images->portal_large = "$tangoLarge/apps/preferences-system-network-proxy.png";
-$images->portal_huge = "$tangoHuge/apps/preferences-system-network-proxy.png";
-
-$images->edp_small = "$tangoSmall/apps/preferences-desktop-remote-desktop.png";
-$images->edp_large = "$tangoLarge/apps/preferences-desktop-remote-desktop.png";
-$images->edp_huge = "$tangoHuge/apps/preferences-desktop-remote-desktop.png";
-
-$images->committers_small = "$tangoSmall/apps/system-users.png";
-$images->committers_large = "$tangoLarge/apps/system-users.png";
-$images->committers_huge = "$tangoHuge/apps/system-users.png";
-
-$images->commits_small = "$tangoSmall/categories/applications-graphics.png";
-$images->commits_large = "$tangoLarge/categories/applications-graphics.png";
-$images->commits_huge = "$tangoHuge/categories/applications-graphics.png";
-
-$images->pl_small = "$tangoSmall/apps/preferences-desktop-theme.png";
-$images->pl_large = "$tangoLarge/apps/preferences-desktop-theme.png";
-$images->pl_huge = "$tangoHuge/apps/preferences-desktop-theme.png";
-
-$images->mentor_small = "$tangoSmall/emblems/emblem-favorite.png";
-$images->mentor_large = "$tangoLarge/emblems/emblem-favorite.png";
-$images->mentor_huge = "$tangoHuge/emblems/emblem-favorite.png";
-
-$images->tools_small = "$tangoSmall/categories/preferences-system.png";
-$images->tools_large = "$tangoLarge/categories/preferences-system.png";
-$images->tools_huge = "$tangoHuge/categories/preferences-system.png";
-
-$images->download_small = "$tangoSmall/actions/go-bottom.png";
-$images->download_large = "$tangoLarge/actions/go-bottom.png";
-$images->download_huge = "$tangoHuge/actions/go-bottom.png";
-
-$images->plan_small = "$tangoSmall/apps/accessories-text-editor.png";
-$images->plan_large = "$tangoLarge/apps/accessories-text-editor.png";
-$images->plan_huge = "$tangoHuge/apps/accessories-text-editor.png";
-
-$images->incubation_conforming_small = '/projects/images/egg.gif';
-$images->incubation_nonconforming_small = '/projects/images/egg-redx.jpg';
-$images->incubation_large = "/images/egg-incubation.png";
-
-$images->company_small = "$tangoSmall/actions/go-home.png";
-$images->company_large = "$tangoLarge/actions/go-home.png";
-$images->company_huge = "$tangoHuge/actions/go-home.png";
-
-$images->active_small = "$tangoSmall/status/weather-clear.png";
-$images->active_large = "$tangoLarge/status/weather-clear.png";
-$images->active_huge = "$tangoHuge/status/weather-clear.png";
-
-$images->stale_small = "$tangoSmall/status/weather-few-clouds.png";
-$images->stale_large = "$tangoLarge/status/weather-few-clouds.png";
-$images->stale_huge = "$tangoHuge/status/weather-few-clouds.png";
-
-$images->inactive_small = "$tangoSmall/status/weather-overcast.png";
-$images->inactive_large = "$tangoLarge/status/weather-overcast.png";
-$images->inactive_huge = "$tangoHuge/status/weather-overcast.png";
-
-$images->dead_small = "$tangoSmall/status/weather-severe-alert.png";
-$images->dead_large = "$tangoLarge/status/weather-severe-alert.png";
-$images->dead_huge = "$tangoHuge/status/weather-severe-alert.png";
-
-$images->release_small = "$tangoSmall/apps/internet-web-browser.png";
-$images->release_large = "$tangoLarge/apps/internet-web-browser.png";
-$images->release_huge = "$tangoHuge/apps/internet-web-browser.png";
-?>
\ No newline at end of file
diff --git a/export/need_eca_3.php b/export/need_eca_3.php
deleted file mode 100644
index cf934b3..0000000
--- a/export/need_eca_3.php
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2013 The Eclipse Foundation
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v. 2.0 which is available at
- * http://www.eclipse.org/legal/epl-2.0.
- *
- * SPDX-License-Identifier: EPL-2.0
- *******************************************************************************/
-
-require_once(dirname(__FILE__) . "/../../eclipse.org-common/system/app.class.php");
-$App = new App();
-
-require_once(dirname(__FILE__) . "/../classes/database.inc");
-require_once(dirname(__FILE__) . "/../classes/common.php");
-require_once(dirname(__FILE__) . "/../classes/debug.php");
-
-mustBeEclipseFoundationCaller();
-
-$id = isset($_GET['id']) ? $_GET['id'] : null;
-if (!isValidProjectId($id)) exit();
-
-header('Content-type: text/plain');
-
-$dash = "
- select
- distinct gca.email
- from ProjectRollup as pr
- join GitRepo as gr on pr.subproject=gr.project
- join GitCommitAuthor as gca on gr.path=gca.path
- left join CommitterEmail as ce on gca.email=ce.email
- left join CommitterProject as cp on ce.id=cp.id
- left join Committer as cm on gca.name=concat(cm.first, ' ', cm.last)
- where gca.email not like '%@users.noreply.github.com'
- and pr.project='$id' and cp.project is null
- and cm.email is null
- and gca.email not like '%eclipse.org'";
-
-query('dashboard', $dash, array(), function ($row) {
- $sql = "
- SELECT
- distinct p.PersonId, p.FName, p.LName, p.Email
- FROM People as p
- join PeopleDocuments as pd
- on p.PersonId=pd.PersonId
- and pd.DocumentID in ('99f64b0dac3e41dc1e97','a6f31f81d1b9abbcdbba')
- and pd.ExpirationDate is null
- left join PeopleDocuments as v3 on p.PersonId=v3.PersonId
- and v3.DocumentId='99f64b0dac3e41dc1e97'
- and v3.Version=3.0 and v3.ExpirationDate is null
- where email='{$row['email']}'
- and v3.PersonId is null";
-
- query('foundation', $sql, array(), function($row) {
- echo "{$row['Email']}\n";
- });
-
-});
-
-
-?>
\ No newline at end of file
diff --git a/export/patterns.json.php b/export/patterns.json.php
deleted file mode 100755
index 1c0a98d..0000000
--- a/export/patterns.json.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/*****************************************************************
- * Copyright (c) 2018 Eclipse Foundation and others.
- *
- * This program and the accompanying materials are made available
- * under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *****************************************************************/
-require_once(dirname(__FILE__) . "/../../eclipse.org-common/system/app.class.php");
-
-require_once(dirname(__FILE__) . '/../classes/Project.class.php');
-require_once(dirname(__FILE__) . '/../classes/common.php');
-require_once(dirname(__FILE__) . '/../classes/debug.php');
-
-$App = new App();
-
-mustBeEclipseFoundationCaller();
-
-header("Content-type: application/json");
-
-$patterns = ProjectBundlePatterns::getAll();
-
-$output = json_encode($patterns);
-if ($output === false) echo json_last_error_msg();
-
-echo $output;
-?>
diff --git a/ip-check/cq-map.txt b/ip-check/cq-map.txt
deleted file mode 100644
index 203775d..0000000
--- a/ip-check/cq-map.txt
+++ /dev/null
@@ -1,7961 +0,0 @@
-3445, com.sun.xml.bind_2.1.12.*.jar
-2333, javax.activation_1.1.0.*.jar
-2333, javax.activation.source_1.1.0.*.jar
-3035, javax.annotation_1.1.1.*.jar
-3515, javax.jbi_1.2.0.*.jar
-3020, javax.mail_1.4.0.*.jar
-3021, javax.servlet_2.5.0.*.jar
-2334, javax.transaction_1.1.1.*.jar
-3010, javax.wsdl_1.6.2.*.jar
-3056, javax.xml.bind_2.1.9.*.jar
-3012, javax.xml.stream_1.0.1.*.jar
-3047, javax.xml.ws_2.1.0.*.jar
-3009, org.aopalliance_1.0.0.*.jar
-3402, org.apache.ant_1.7.1.*.jar
-3408, org.apache.axiom_1.2.4.*.jar
-3404, org.apache.commons.codec_1.3.0.*.jar
-3011, org.apache.commons.collections_3.2.0.*.jar
-3405, org.apache.commons.httpclient_3.1.0.*.jar
-3025, org.apache.commons.lang_2.4.0.*.jar
-3406, org.apache.commons.logging_1.1.1.*.jar
-3053, org.apache.cxf_2.1.3.v200910261235.jar
-3053, org.apache.cxf.binding.jbi_2.1.3.*.jar
-3053, org.apache.cxf.transport.jbi_2.1.3.*.jar
-1868, org.apache.neethi_2.0.4.*.jar
-3409, org.apache.servicemix.common_2009.1.0.*.jar
-3415, org.apache.servicemix.cxf.binding.nmr_4.0.0.*.jar
-3416, org.apache.servicemix.cxf.transport.nmr_4.0.0.*.jar
-3417, org.apache.servicemix.cxf.transport.osgi_4.0.0.*.jar
-3062, org.apache.servicemix.document_1.0.0.*.jar
-3062, org.apache.servicemix.http_2009.1.0.*.jar
-3062, org.apache.servicemix.jbi.deployer_1.0.0.*.jar
-3062, org.apache.servicemix.jbi.osgi_1.0.0.*.jar
-3062, org.apache.servicemix.jbi.runtime_1.0.0.*.jar
-3238, org.apache.servicemix.kernel.filemonitor_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.boot_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.config_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.modules_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.management_1.1.0.*.jar
-3062, org.apache.servicemix.nmr.api_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.core_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.management_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.osgi_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.spring_1.0.0.*.jar
-3410, org.apache.servicemix.soap_2009.1.0.*.jar
-3411, org.apache.servicemix.soap2_2009.1.0.*.jar
-3412, org.apache.servicemix.utils_1.1.0.*.jar
-3026, org.apache.velocity_1.5.0.*.jar
-3015, org.apache.ws.commons.schema_1.4.2.*.jar
-3414, org.apache.xbean.classloader_3.5.0.*.jar
-3418, org.apache.xbean.spring_3.5.0.*.jar
-3037, org.apache.xml.resolver_1.2.0.*.jar
-3017, org.jdom_1.0.0.*.jar
-3356, org.mortbay.jetty.client_6.1.15.*.jar
-3043, org.mortbay.jetty.security_6.1.15.*.jar
-3043, org.mortbay.jetty.server_6.1.15.*.jar
-3043, org.mortbay.jetty.util_6.1.15.*.jar
-3299, org.mortbay.management_6.1.15.*.jar
-3064, org.objectweb.asm_3.1.0.*.jar
-2325, org.springframework.aop_2.5.2.*.jar
-2326, org.springframework.beans_2.5.2.*.jar
-2328, org.springframework.context_2.5.2.*.jar
-2329, org.springframework.core_2.5.2.*.jar
-2330, org.springframework.osgi.core_1.0.2.*.jar
-2331, org.springframework.osgi.extender_1.0.2.*.jar
-2332, org.springframework.osgi.io_1.0.2.*.jar
-3013, javax.jws_2.0.0.*.jar
-2166, javax.xml_1.3.4.*.jar
-3018, javax.xml.soap_1.3.0.*.jar
-3014, org.apache.neethi_2.0.4.*.jar
-
-1985, org.apache.xalan_2.7.1.v200905122109.jar
-1441, org.apache.xml.resolver_1.2.0.*.jar
-1443, org.apache.xml.serializer_2.7.1.*.jar
-14, org.jdom_1.0.0.*.jar
-
-1987, com.ibm.wala.shrike_1.1.3.200810211059.jar
-2312, lpg.runtime_2.0.13.jar
-3074, lpg.generator.linux_x86_2.0.16.*.jar
-3653, lpg.generator.linux_x86_2.0.17.jar
-3074, lpg.generator.linux_x86_64_2.0.16.jar
-3653, lpg.generator.linux_x86_64_2.0.17.jar
-3074, lpg.generator.macosx_x86_2.0.16.jar
-3653, lpg.generator.macosx_x86_2.0.17.jar
-3653, lpg.generator.macosx_x86_64_2.0.17.jar
-3074, lpg.generator.win32_x86_2.0.16.jar
-3653, lpg.generator.win32_x86_2.0.17.jar
-3074, lpg.runtime_2.0.16.jar
-3653, lpg.runtime_2.0.17.jar
-2012, polyglot_2.3.0.jar
-
-1548, org.antlr.runtime_3.0.0.*.jar
-1359, org.antlr.runtime_3.0.0.*.jar
-1557, org.antlr.runtime_3.0.0.*.jar
-1647, org.antlr.runtime_3.0.0.*.jar
-1695, org.antlr.runtime_3.0.0.*.jar
-
-#ECF
-2782, ch.ethz.iks.r_osgi.remote_1.0.0.*.jar
-2782, ch.ethz.iks.r_osgi.remote.source_1.0.0.*.jar
-#ch.ethz.iks.slp_1.1.0.*.jar
-#ch.ethz.iks.slp.source_1.1.0.*.jar
-3330, org.jivesoftware.smack_3.1.0.jar
-3330, org.jivesoftware.smack.source_3.1.0.jar
-3453, org.json_1.0.0.*.jar
-3453, org.json.source_1.0.0.*.jar
-1937, org.objectweb.asm_3.1.0.*.jar
-1937, org.objectweb.asm.source_3.1.0.*.jar
-
-# The following are actually developed by the ECF project
-rt.ecf, ch.ethz.iks.slp_*.jar
-rt.ecf, ch.ethz.iks.slp.source_*.jar
-
-#Webtools
-#javax.activation_1.1.0.v200906290531.jar
-1709, javax.jws_2.0.0.*.jar
-1660, javax.wsdl_1.6.2.*.jar
-3005, javax.xml.bind_2.1.9.*.jar
-1106, javax.xml.stream_1.0.1.*.jar
-3001, javax.xml.ws_2.1.0.*.jar
-1587, org.jdom_1.0.0.*.jar
-
-#jwt
-2166, javax.xml_1.3.4.*.jar
-2213, org.apache.xalan_2.7.1.*.jar
-#org.apache.xerces_2.9.0.*.jar
-2136, org.apache.xml.resolver_1.2.0.*.jar
-3110, org.apache.xml.serializer_2.7.1.*.jar
-14, org.jdom_1.0.0.*.jar
-
-#smila
-# 200150 03-07-10 20:14 jmxclient/lib/beanutils.jar
-# 54317 03-07-10 20:14 jmxclient/lib/jmxclient.jar
-# 387850 03-07-10 20:14 jmxclient/lib/log4j.jar
-# 60841 03-07-10 20:14 jmxclient/lib/logging.jar
-3177, ldap.jar
-# 27699 03-07-10 20:13 plugins/javax.el_1.0.0/lib/el-api.jar
-# 59037 03-07-10 20:14 plugins/javax.persistence_1.99.0.jar
-# 42357 03-07-10 20:14 plugins/javax.resource_1.5.0.jar
-1980, javax.servlet.jsp_2.1.0/lib/*.jar
-1961, javax.servlet_2.5.0.*.jar
-2334, javax.transaction_1.1.0.jar
-2691, javax.wsdl_1.6.2.*.jar
-2667, javax.xml_1.3.4.*.jar
-2580, activemq-camel-5.2.0.jar
-2580, activemq-core-5.2.0.jar
-2580, activemq-jaas-5.2.0.jar
-2704, camel-core-1.4.0.jar
-2705, camel-jetty-1.4.0.jar
-2706, camel-jms-1.4.0.jar
-2707, camel-spring-1.4.0.jar
-2708, geronimo-j2ee-management_1.0_spec-1.0.jar
-2709, geronimo-jta_1.0.1B_spec-1.0.1.jar
-2743, axiom-api-1.2.7.jar
-2744, axiom-impl-1.2.7.jar
-2745, axis2-kernel-1.4.1.jar
-# 326319 03-07-10 20:13 plugins/org.apache.axis2.kernel_1.4.1/lib/backport-util-concurrent-2.2.jar
-# 2666695 03-07-10 20:13 plugins/org.apache.axis2.kernel_1.4.1/lib/xmlbeans-2.3.0.jar
-2660, org.apache.commons.beanutils_1.7.0.*.jar
-2672, org.apache.commons.codec_1.3.0.*.jar
-2764, org.apache.commons.collections_3.2.0.*.jar
-2765, commons-dbcp-1.2.2.jar
-3156, org.apache.commons.fileupload_1.2.0.*.jar
-2673, org.apache.commons.httpclient_3.1.0.*.jar
-2677, org.apache.commons.io_1.4.0.*.jar
-2678, org.apache.commons.lang_2.4.0.*.jar
-2682, commons-logging-1.1.1.jar
-2690, org.apache.commons.pool_1.3.0.*.jar
-3286, org.apache.derby_10.5.1.1/derby.jar
-3286, derbyclient.jar
-3286, derbynet.jar
-2687, org.apache.geronimo.specs.geronimo-jms_1.1_spec_1.1.1.jar
-2750, org.apache.httpcomponents.httpcore_4.0.0.*.jar
-2554, org.apache.log4j_1.2.13.*.jar
-2557, org.apache.lucene.analysis_2.3.2/lib/lucene-analyzers-2.3.2.jar
-2603, lucene-snowball-2.3.jar
-2558, lucene-highlighter-2.3.2.jar
-2556, lucene-core-2.3.2.jar
-# 35220 03-07-10 20:14 plugins/org.apache.neethi_2.0.4.1.jar
-2742, org.apache.ode.source_2.0.0.jar
-2742, geronimo-connector-2.0.1.jar
-2742, geronimo-transaction-2.0.1.jar
-2742, javax.persistence_1.0.0.jar
-2742, ode-axis2-2.0-beta2.jar
-2742, ode-bpel-api-2.0-beta2.jar
-2742, ode-bpel-compiler-2.0-beta2.jar
-2742, ode-bpel-dao-2.0-beta2.jar
-2742, ode-bpel-ql-2.0-beta2.jar
-2742, ode-bpel-schemas-2.0-beta2.jar
-2742, ode-bpel-store-2.0-beta2.jar
-2742, ode-dao-jpa-2.0-beta2.jar
-2742, ode-engine-2.0-beta2.jar
-2742, ode-il-common-2.0-beta2.jar
-2742, ode-jacob-2.0-beta2.jar
-2742, ode-runtimes-2.0-beta2.jar
-2742, ode-scheduler-simple-2.0-beta2.jar
-2742, ode-utils-2.0-beta2.jar
-2742, openjpa-1.1.0.jar
-2742, serp-1.13.1.jar
-2742, tranql-connector-1.1.jar
-3102, org.apache.oro_2.0.8.*.jar
-2561, tomcat-6.0.18/*.jar
-2756, org.apache.ws.commons.schema_1.4.2.*.jar
-2696, org.apache.xalan_2.7.1.*.jar
-2695, org.apache.xerces_2.9.0.*.jar
-2692, org.apache.xml.resolver_1.2.0.*.jar
-2693, org.apache.xml.serializer_2.7.1.*.jar
-2617, org.custommonkey.xmlunit_1.2.0/xmlunit-1.2.jar
-2768, org.cyberneko.html_1.9.9/nekohtml-1.9.9.jar
-2674, org.jdom_1.0.0.*.jar
-3086, openrdf-sesame-2.2.4-onejar.jar
-3084, org.slf4j.api_1.5.6/slf4j-api-1.5.6.jar
-3085, slf4j-log4j12-1.5.6.jar
-2589, org.w3c.tidy_2000.8.4/Tidy.jar
-3275, rome-fetcher-1.0.jar
-3274, rome-1.0.jar
-
-#GMF
-2924, javax.xml_1.3.4.*.jar
-2924, javax.xml_1.3.4.*.jar
-302, net.sourceforge.lpg.lpgjavaruntime_1.1.0.*.jar
-302, net.sourceforge.lpg.lpgjavaruntime_1.1.0.*.jar
-302, net.sourceforge.lpg.lpgjavaruntime.source_1.1.0.*.jar
-208, org.apache.batik_1.6.0.*.jar
-208, org.apache.batik.bridge_1.6.0.*.jar
-208, org.apache.batik.bridge_1.6.0.*.jar
-208, org.apache.batik.bridge.source_1.6.0.*.jar
-208, org.apache.batik.bridge.source_1.6.0.*.jar
-2497, org.apache.batik.bridge.source_1.7.0.*.jar
-208, org.apache.batik.css_1.6.0.*.jar
-208, org.apache.batik.css_1.6.0.*.jar
-208, org.apache.batik.css.source_1.6.0.*.jar
-208, org.apache.batik.css.source_1.6.0.*.jar
-2493, org.apache.batik.css.source_1.7.0.*.jar
-208, org.apache.batik.dom_1.6.0.*.jar
-208, org.apache.batik.dom_1.6.0.*.jar
-208, org.apache.batik.dom.source_1.6.0.*.jar
-208, org.apache.batik.dom.source_1.6.0.*.jar
-2487, org.apache.batik.dom.source_1.7.0.*.jar
-208, org.apache.batik.dom.svg_1.6.0.*.jar
-208, org.apache.batik.dom.svg_1.6.0.*.jar
-208, org.apache.batik.dom.svg.source_1.6.0.*.jar
-208, org.apache.batik.dom.svg.source_1.6.0.*.jar
-2482, org.apache.batik.dom.svg.source_1.7.0.*.jar
-208, org.apache.batik.ext.awt_1.6.0.*.jar
-208, org.apache.batik.ext.awt_1.6.0.*.jar
-208, org.apache.batik.ext.awt.source_1.6.0.*.jar
-208, org.apache.batik.ext.awt.source_1.6.0.*.jar
-2478, org.apache.batik.ext.awt.source_1.7.0.*.jar
-208, org.apache.batik.parser_1.6.0.*.jar
-208, org.apache.batik.parser_1.6.0.*.jar
-208, org.apache.batik.parser.source_1.6.0.*.jar
-208, org.apache.batik.parser.source_1.6.0.*.jar
-2486, org.apache.batik.parser.source_1.7.0.*.jar
-208, org.apache.batik.pdf_1.6.0.*.jar
-208, org.apache.batik.svggen_1.6.0.*.jar
-208, org.apache.batik.svggen_1.6.0.*.jar
-208, org.apache.batik.svggen.source_1.6.0.*.jar
-208, org.apache.batik.svggen.source_1.6.0.*.jar
-2482, org.apache.batik.svggen.source_1.7.0.*.jar
-208, org.apache.batik.transcoder_1.6.0.*.jar
-208, org.apache.batik.transcoder_1.6.0.*.jar
-208, org.apache.batik.transcoder.source_1.6.0.*.jar
-208, org.apache.batik.transcoder.source_1.6.0.*.jar
-2481, org.apache.batik.transcoder.source_1.7.0.*.jar
-208, org.apache.batik.util_1.6.0.*.jar
-208, org.apache.batik.util_1.6.0.*.jar
-208, org.apache.batik.util.gui_1.6.0.*.jar
-208, org.apache.batik.util.gui_1.6.0.*.jar
-208, org.apache.batik.util.gui.source_1.6.0.*.jar
-208, org.apache.batik.util.gui.source_1.6.0.*.jar
-2485, org.apache.batik.util.gui.source_1.7.0.*.jar
-208, org.apache.batik.util.source_1.6.0.*.jar
-208, org.apache.batik.util.source_1.6.0.*.jar
-2483, org.apache.batik.util.source_1.7.0.*.jar
-208, org.apache.batik.xml_1.6.0.*.jar
-208, org.apache.batik.xml_1.6.0.*.jar
-208, org.apache.batik.xml.source_1.6.0.*.jar
-208, org.apache.batik.xml.source_1.6.0.*.jar
-2491, org.apache.batik.xml.source_1.7.0.*.jar
-248, org.apache.xerces_2.8.0.*.jar
-248, org.apache.xerces_2.8.0.*.jar
-2110, org.apache.xerces_2.9.0.*.jar
-2110, org.apache.xerces_2.9.0.*.jar
-org.apache.xml.resolver_1.1.0.*.jar
-org.apache.xml.resolver_1.2.0.*.jar
-org.apache.xml.resolver_1.2.0.*.jar
-org.apache.xml.serializer_2.7.1.*.jar
-org.apache.xml.serializer_2.7.1.*.jar
-2124, org.w3c.css.sac_1.3.0.*.jar
-2124, org.w3c.css.sac_1.3.0.*.jar
-2124, org.w3c.css.sac.source_1.3.0.*.jar
-2124, org.w3c.css.sac.source_1.3.0.*.jar
-org.w3c.css.sac.source_1.3.1.*.jar
-org.w3c.dom.events_3.0.0.*.jar
-org.w3c.dom.smil_1.0.0.*.jar
-org.w3c.dom.smil_1.0.0.*.jar
-org.w3c.dom.smil_1.0.1.*.jar
-org.w3c.dom.smil.source_1.0.0.*.jar
-org.w3c.dom.smil.source_1.0.0.*.jar
-org.w3c.dom.smil.source_1.0.1.*.jar
-org.w3c.dom.svg_1.1.0.*.jar
-org.w3c.dom.svg_1.1.0.*.jar
-org.w3c.dom.svg.source_1.1.0.*.jar
-org.w3c.dom.svg.source_1.1.0.*.jar
-
-#Swordfish
-3038, com.ctc.wstx_3.2.8.*.jar
-3445, com.sun.xml.bind_2.1.12.*.jar
-2333, javax.activation_1.1.0.*.jar
-3035, javax.annotation_1.1.1.*.jar
-3515, javax.jbi_1.2.0.*.jar
-3013, javax.jws_2.0.0.*.jar
-3020, javax.mail_1.4.0.*.jar
-3021, javax.servlet_2.5.0.*.jar
-2334, javax.transaction_1.1.1.*.jar
-3010, javax.wsdl_1.6.2.*.jar
-3403, javax.xml_1.3.4.*.jar
-3056, javax.xml.bind_2.1.9.*.jar
-x, javax.xml.bind.swordfish.tooling_0.9.2.*.jar
-3018, javax.xml.soap_1.3.0.*.jar
-3012, javax.xml.stream_1.0.1.*.jar
-x, javax.xml.stream.swordfish.tooling_0.9.2.*.jar
-3047, javax.xml.ws_2.1.0.*.jar
-2325, org.aopalliance_1.0.0.*.jar
-3402, org.apache.ant_1.7.1.*.jar
-3408, org.apache.axiom_1.2.4.*.jar
-3404, org.apache.commons.codec_1.3.0.*.jar
-3011, org.apache.commons.collections_3.2.0.*.jar
-3405, org.apache.commons.httpclient_3.1.0.*.jar
-3025, org.apache.commons.lang_2.4.0.*.jar
-3406, org.apache.commons.logging_1.1.1.*.jar
-3053, org.apache.cxf_2.1.3.*.jar
-3053, org.apache.cxf.binding.jbi_2.1.3.*.jar
-3053, org.apache.cxf.transport.jbi_2.1.3.*.jar
-3014, org.apache.neethi_2.0.4.1.jar
-3409, org.apache.servicemix.common_2009.1.0.*.jar
-3415, org.apache.servicemix.cxf.binding.nmr_4.0.0.*.jar
-3416, org.apache.servicemix.cxf.transport.nmr_4.0.0.*.jar
-3417, org.apache.servicemix.cxf.transport.osgi_4.0.0.*.jar
-3062, org.apache.servicemix.document_1.0.0.*.jar
-3413, org.apache.servicemix.http_2009.1.0.*.jar
-3062, org.apache.servicemix.jbi.deployer_1.0.0.*.jar
-3062, org.apache.servicemix.jbi.osgi_1.0.0.*.jar
-3062, org.apache.servicemix.jbi.runtime_1.0.0.*.jar
-3238, org.apache.servicemix.kernel.filemonitor_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.boot_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.config_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.modules_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.management_1.1.0.*.jar
-3062, org.apache.servicemix.nmr.api_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.core_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.management_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.osgi_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.spring_1.0.0.*.jar
-3410, org.apache.servicemix.soap_2009.1.0.*.jar
-3411, org.apache.servicemix.soap2_2009.1.0.*.jar
-3412, org.apache.servicemix.utils_1.1.0.*.jar
-3026, org.apache.velocity_1.5.0.*.jar
-x, org.apache.velocity.swordfish.tooling_0.9.2.*.jar
-3015, org.apache.ws.commons.schema_1.4.2.*.jar
-3414, org.apache.xbean.classloader_3.5.0.*.jar
-3418, org.apache.xbean.spring_3.5.0.*.jar
-3037, org.apache.xml.resolver_1.2.0.*.jar
-3017, org.jdom_1.0.0.*.jar
-3356, org.mortbay.jetty.client_6.1.15.*.jar
-3357, org.mortbay.jetty.security_6.1.15.*.jar
-org.mortbay.jetty.server_6.1.23.*.jar
-org.mortbay.jetty.util_6.1.23.*.jar
-3299, org.mortbay.management_6.1.15.*.jar
-org.objectweb.asm_3.2.0.*.jar
-2325, org.springframework.aop_2.5.2.*.jar
-2326, org.springframework.beans_2.5.2.*.jar
-2328, org.springframework.context_2.5.2.*.jar
-2329, org.springframework.core_2.5.2.*.jar
-2330, org.springframework.osgi.core_1.0.2.*.jar
-2331, org.springframework.osgi.extender_1.0.2.*.jar
-2332, org.springframework.osgi.io_1.0.2.*.jar
-
-#Riena 2.0.0
-3676, com.caucho.hessian_3.2.0.jar
-3676, com.caucho.hessian.source_3.2.0.jar
-2588, org.apache.commons.beanutils_1.7.0.*.jar
-?, org.apache.commons.logging_1.0.4.*.jar
-?, org.apache.commons.logging.source_1.0.4.*.jar
-3600, org.apache.log4j_1.2.13.*.jar
-2452, org.apache.oro_2.0.8.*.jar
-3599, org.easymock_2.4.0.*.jar
-3601, org.junit_3.8.2.*.jar
-3829, org.pushingpixels.trident_1.2.0.*.jar
-
-#Swordfish 0.10.0
-3038, com.ctc.wstx_3.2.8.*.jar
-3446, com.sun.xml.bind_2.1.12.*.jar
-2333, javax.activation_1.1.0.*.jar
-2333, javax.activation_1.1.0.*.jar
-3035, javax.annotation_1.1.1.*.jar
-3035, javax.annotation_1.1.1.*.jar
-3515, javax.jbi_1.2.0.*.jar
-3013, javax.jws_2.0.0.*.jar
-3020, javax.mail_1.4.0.*.jar
-3021, javax.servlet_2.5.0.*.jar
-2334, javax.transaction_1.1.1.*.jar
-3010, javax.wsdl_1.6.2.*.jar
-3403, javax.xml_1.3.4.*.jar
-3057, javax.xml.bind_2.1.9.*.jar
-3018, javax.xml.soap_1.3.0.*.jar
-3012, javax.xml.stream_1.0.1.*.jar
-3047, javax.xml.ws_2.1.0.*.jar
-3009, org.aopalliance_1.0.0.*.jar
-3402, org.apache.ant_1.7.1.*.jar
-3408, org.apache.axiom_1.2.4.*.jar
-3404, org.apache.commons.codec_1.3.0.*.jar
-3011, org.apache.commons.collections_3.2.0.*.jar
-3405, org.apache.commons.httpclient_3.1.0.*.jar
-3025, org.apache.commons.lang_2.4.0.*.jar
-3406, org.apache.commons.logging_1.1.1.*.jar
-3053, org.apache.cxf_2.1.3.*.jar
-3053, org.apache.cxf.binding.jbi_2.1.3.*.jar
-3053, org.apache.cxf.transport.jbi_2.1.3.*.jar
-3014, org.apache.neethi_2.0.4.1.jar
-3409, org.apache.servicemix.common_2009.1.0.*.jar
-3415, org.apache.servicemix.cxf.binding.nmr_4.0.0.*.jar
-3416, org.apache.servicemix.cxf.transport.nmr_4.0.0.*.jar
-3417, org.apache.servicemix.cxf.transport.osgi_4.0.0.*.jar
-3062, org.apache.servicemix.document_1.0.0.*.jar
-3413, org.apache.servicemix.http_2009.1.0.*.jar
-3062, org.apache.servicemix.jbi.deployer_1.0.0.*.jar
-3062, org.apache.servicemix.jbi.osgi_1.0.0.*.jar
-3062, org.apache.servicemix.jbi.runtime_1.0.0.*.jar
-3238, org.apache.servicemix.kernel.filemonitor_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.boot_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.config_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.jaas.modules_1.1.0.*.jar
-3238, org.apache.servicemix.kernel.management_1.1.0.*.jar
-3062, org.apache.servicemix.nmr.api_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.core_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.management_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.osgi_1.0.0.*.jar
-3062, org.apache.servicemix.nmr.spring_1.0.0.*.jar
-3410, org.apache.servicemix.soap_2009.1.0.*.jar
-3411, org.apache.servicemix.soap2_2009.1.0.*.jar
-3412, org.apache.servicemix.utils_1.1.0.*.jar
-3026, org.apache.velocity_1.5.0.*.jar
-3015, org.apache.ws.commons.schema_1.4.2.*.jar
-3414, org.apache.xbean.classloader_3.5.0.*.jar
-3418, org.apache.xbean.spring_3.5.0.*.jar
-3037, org.apache.xml.resolver_1.2.0.*.jar
-3017, org.jdom_1.0.0.*.jar
-3356, org.mortbay.jetty.client_6.1.15.*.jar
-3043, org.mortbay.jetty.security_6.1.15.*.jar
-3043, org.mortbay.jetty.server_6.1.15.*.jar
-3043, org.mortbay.jetty.util_6.1.15.*.jar
-3299, org.mortbay.management_6.1.15.*.jar
-3064, org.objectweb.asm_3.1.0.*.jar
-2325, org.springframework.aop_2.5.2.*.jar
-2326, org.springframework.beans_2.5.2.*.jar
-2328, org.springframework.context_2.5.2.*.jar
-2329, org.springframework.core_2.5.2.*.jar
-2330, org.springframework.osgi.core_1.0.2.*.jar
-2331, org.springframework.osgi.extender_1.0.2.*.jar
-2332, org.springframework.osgi.io_1.0.2.*.jar
-
-# XText 1.0.0
-2949, com.google.collect.source_0.8.0.v201005261414.jar
-2949, com.google.collect_0.8.0.v201005261414.jar
-3498, com.google.inject_2.0.0.v201003051000.jar
-3778, org.antlr.runtime_3.0.0.v200803061811.jar
-2918, org.aopalliance_1.0.0.v200905130917.jar
-2993, org.apache.log4j_1.2.15.v201005080500.jar
-
-#Equinox 3.6
-305, javax.management_1.2.0.v20100427-1100.jar
-305, javax.management.remote_1.0.0.v20100427-1100.jar
-236, javax.servlet_2.4.0.v200806031604.jar
-1961, javax.servlet_2.5.0.v200910301333.jar
-235, javax.servlet.jsp_2.0.0.v200806031607.jar
-217, org.apache.commons.el_1.0.0.v201004212143.jar
-220, org.apache.commons.logging_1.0.4.v201005080501.jar
-256, org.apache.ws.commons.util_1.0.0.v1_0_0_v20100427-1100.jar
-237, org.apache.ws.jaxme_0.5.1.v20100427-1100.jar
-256, org.apache.xmlrpc_3.0.0.v20100427-1100.jar
-1962, org.mortbay.jetty_5.1.14.v200806031611.jar
-3915, org.mortbay.jetty.server_6.1.23.v201004211559.jar
-3915, org.mortbay.jetty.util_6.1.23.v201004211559.jar
-3911, org.sat4j.core_2.2.0.v20100429.jar
-3911, org.sat4j.pb_2.2.0.v20100429.jar
-
-# EclipseLink
-2884, commonj.sdo_2.1.1.v200905221342.jar
-1620, javax.activation_1.1.0.v200906290531.jar
-1619, javax.mail_1.4.0.v200804091730.jar
-3542, javax.persistence_2.0.0.v201005141517.jar
-3542, javax.persistence.source_2.0.0.v201005141517.jar
-3670, javax.xml.bind_2.2.0.v201003241715.jar
-1618, javax.xml.stream_1.0.1.v201001131653.jar
-1617, javax.xml.bind_2.0.0.v20080604-1500.jar
-
-# RAP 1.3.0
-4084, org.mortbay.jetty.util.source_6.1.23.v201004211559.jar
-2375, org.junit_3.8.2.v3_8_2_v20100427-1100/junit.jar
-2917, javax.servlet.source_2.5.0.v200910301333.jar
-3709, com.ibm.icu.base.source_4.2.1.v20100412.jar
-4084, org.mortbay.jetty.server_6.1.23.v201004211559.jar
-4084, org.mortbay.jetty.util_6.1.23.v201004211559.jar
-3709, com.ibm.icu.base_4.2.1.v20100412.jar
-2917, javax.servlet_2.5.0.v200910301333.jar
-2375,org.junit.source_3.8.2.v3_8_2_v20100427-1100.jar
-4084, org.mortbay.jetty.server.source_6.1.23.v201004211559.jar
-
-# ECF 3.3
-2782, ch.ethz.iks.r_osgi.remote_1.0.0.RC4_v20100526-0240.jar
-2782, ch.ethz.iks.r_osgi.remote.source_1.0.0.RC4_v20100526-0240.jar
-3910, org.apache.zookeeper_3.3.0.jar
-3910, org.apache.zookeeper_3.3.0.v20101029-1626.jar
-3330, org.jivesoftware.smack_3.1.0.jar
-3330, org.jivesoftware.smack.source_3.1.0.jar
-4104, org.xbill.dns_2.0.8.v201010140805.jar
-1943, com.sun.syndication_0.9.0.v200803061811.jar
-
-# GMF-runtime
-2924, javax.xml_1.3.4.v201005080400.jar
-208, org.apache.batik.bridge_1.6.0.v200912221622.jar
-208, org.apache.batik.css_1.6.0.v200912221622.jar
-208, org.apache.batik.dom.svg_1.6.0.v200805290154.jar
-208, org.apache.batik.dom_1.6.0.v200912221622.jar
-208, org.apache.batik.ext.awt_1.6.0.v200805290154.jar
-208, org.apache.batik.parser_1.6.0.v200805290154.jar
-208, org.apache.batik.pdf_1.6.0.v200806031500.jar
-208, org.apache.batik.svggen_1.6.0.v200805290154.jar
-208, org.apache.batik.transcoder_1.6.0.v200805290154.jar
-208, org.apache.batik.util.gui_1.6.0.v200805290154.jar
-208, org.apache.batik.util_1.6.0.v200805290154.jar
-208, org.apache.batik.xml_1.6.0.v200805290154.jar
-2110, org.apache.xerces_2.9.0.v201005080400.jar
-208, org.apache.xml.resolver_1.2.0.v201005080400.jar
-208, org.apache.xml.serializer_2.7.1.v201005080400.jar
-2124, org.w3c.css.sac_1.3.0.v200805290154.jar
-208, org.w3c.dom.events_3.0.0.draft20060413_v200905140418.jar
-2166, org.w3c.dom.smil_1.0.1.v200903091627.jar
-208, org.w3c.dom.svg_1.1.0.v200806040011.jar
-
-# Eclipse Platform 3.6
-2476, org.apache.ant_1.7.1.v20090120-1145.jar
-243, org.apache.lucene_1.9.1.v20080530-1600.jar
-3925, com.ibm.icu_4.2.1.v20100412.jar
-org.apache.jasper_5.5.17.v201004212143.jar
-3935, org.mortbay.jetty.util_6.1.23.v201004211559.jar
-3925, com.ibm.icu.base_4.2.1.v20100412.jar
-243, org.apache.lucene.analysis_1.9.1.v20080530-1600.jar
-3935, org.mortbay.jetty.server_6.1.23.v201004211559.jar
-
-javax.servlet.jsp_2.0.0.v200806031607.jar # part of equinox
-org.sat4j.core_2.2.0.v20100429.jar # part of equinox
-org.apache.commons.logging_1.0.4.v201005080501.jar # part of equinox
-javax.servlet_2.4.0.v200806031604.jar # part of equinox
-org.apache.commons.httpclient_3.1.0.v201005080502.jar # part of equinox
-org.sat4j.pb_2.2.0.v20100429.jar # part of equinox
-org.apache.commons.el_1.0.0.v201004212143.jar # part of equinox
-org.apache.commons.codec_1.3.0.v20080530-1600.jar # part of equinox
-javax.servlet_2.5.0.v200910301333.jar # part of equinox
-com.jcraft.jsch_0.1.41.v200903070017.jar # part of ecf
-
-# PDE 3.6
-3427, org.objectweb.asm_3.2.0.v200909071300.jar
-
-#JDT 3.6
-org.junit_4.8.1.v4_8_1_v20100427-1100.jar
-299, org.junit_3.8.2.v3_8_2_v20100427-1100.jar
-org.junit4_4.8.1.v20100505.jar
-2583, org.hamcrest.core_1.1.0.v20090501071000.jar
-
-# XText 1.0
-2949, com.google.collect.source_0.8.0.v201005261414.jar
-2949, com.google.collect_0.8.0.v201005261414.jar
-3498, com.google.inject_2.0.0.v201003051000.jar
-2989, org.antlr.runtime_3.0.0.v200803061811.jar
-2918, org.aopalliance_1.0.0.v200905130917.jar
-2993, org.apache.log4j_1.2.15.v201005080500.jar
-
-# Xpand 1.0
-2991, org.antlr.runtime_3.0.0.v200803061811.jar
-org.apache.commons.logging_1.1.1.v201005080502.jar
-
-# CDT 7.0
-1468, net.sourceforge.lpg.lpgjavaruntime_1.1.0.v200803061910.jar
-
-# DSDP TM 3.2
-3188, org.apache.commons.net_2.0.0.v200905272248.jar
-3188, org.apache.commons.net.source_2.0.0.v200905272248.jar
-
-# Webtools 3.2
-1934, java_cup.runtime_0.10.0.v201005080400.jar
-1461, javax.activation_1.1.0.v201005080500.jar
-javax.jws_2.0.0.v201005080400.jar
-2059, javax.mail_1.4.0.v201005080615.jar
-1380, javax.wsdl_1.5.1.v201005080630.jar
-3267, javax.wsdl_1.6.2.v201005080631.jar
-3002, javax.xml.bind_2.1.9.v201005080401.jar
-286, javax.xml.rpc_1.1.0.v201005080400/lib/jaxrpc.jar
-1379, javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar
-3003, javax.xml.stream_1.0.1.v201004272200.jar
-3001, javax.xml.ws_2.1.0.v200902101523.jar
-1448, javax.xml_1.3.4.v201005080400.jar
-1375, org.apache.axis_1.4.0.v201005080400/lib/axis-ant.jar
-1376, org.apache.axis_1.4.0.v201005080400/lib/axis.jar
-1932, org.apache.bcel_5.2.0.v201005080400.jar
-1562, org.apache.commons.codec.source_1.3.0.v20100518-1140.jar
-1562, org.apache.commons.codec_1.3.0.v20100518-1140.jar
-3191, org.apache.commons.collections_3.2.0.v201005080500.jar
-215, org.apache.commons.discovery_0.2.0.v201004190315/lib/commons-discovery-0.2.jar
-3190, org.apache.commons.lang_2.1.0.v201005080500.jar
-2879, org.apache.commons.logging.source_1.0.4.v201005080501.jar
-2879, org.apache.commons.logging_1.0.4.v201005080501.jar
-3869, org.apache.log4j_1.2.15.v201005080500.jar
-3192, org.apache.oro_2.0.8.v201005080400.jar
-2763, org.apache.velocity_1.5.0.v200905192330.jar
-330, org.apache.wsil4j_1.0.0.v200901211807.jar
-2877, org.apache.xalan_2.7.1.v201005080400.jar
-2878, org.apache.xerces_2.9.0.v201005080400.jar
-1441, org.apache.xml.resolver_1.2.0.v201005080400.jar
-1443, org.apache.xml.serializer_2.7.1.v201005080400.jar
-3799, org.jdom_1.0.0.v201005080400.jar
-3811, org.mozilla.javascript.source_1.7.2.v201005080400.jar
-3811, org.mozilla.javascript_1.7.2.v201005080400.jar
-321, org.uddi4j_2.0.5.v200805270300.jar
-
-# gmf-runtime
-2924, javax.xml_1.3.4.v201005080400.jar
-208, org.apache.batik.bridge.source_1.6.0.v200912221622.jar
-208, org.apache.batik.bridge_1.6.0.v200912221622.jar
-208, org.apache.batik.css.source_1.6.0.v200912221622.jar
-208, org.apache.batik.css_1.6.0.v200912221622.jar
-208, org.apache.batik.dom.source_1.6.0.v200912221622.jar
-208, org.apache.batik.dom.svg.source_1.6.0.v200805290154.jar
-208, org.apache.batik.dom.svg_1.6.0.v200805290154.jar
-208, org.apache.batik.dom_1.6.0.v200912221622.jar
-208, org.apache.batik.ext.awt.source_1.6.0.v200805290154.jar
-208, org.apache.batik.ext.awt_1.6.0.v200805290154.jar
-208, org.apache.batik.parser.source_1.6.0.v200805290154.jar
-208, org.apache.batik.parser_1.6.0.v200805290154.jar
-208, org.apache.batik.pdf_1.6.0.v200806031500.jar
-208, org.apache.batik.svggen.source_1.6.0.v200805290154.jar
-208, org.apache.batik.svggen_1.6.0.v200805290154.jar
-208, org.apache.batik.transcoder.source_1.6.0.v200805290154.jar
-208, org.apache.batik.transcoder_1.6.0.v200805290154.jar
-208, org.apache.batik.util.gui.source_1.6.0.v200805290154.jar
-208, org.apache.batik.util.gui_1.6.0.v200805290154.jar
-208, org.apache.batik.util.source_1.6.0.v200805290154.jar
-208, org.apache.batik.util_1.6.0.v200805290154.jar
-208, org.apache.batik.xml.source_1.6.0.v200805290154.jar
-208, org.apache.batik.xml_1.6.0.v200805290154.jar
-2110, org.apache.xerces_2.9.0.v201005080400.jar
-208, org.apache.xml.resolver_1.2.0.v201005080400.jar
-208, org.apache.xml.serializer_2.7.1.v201005080400.jar
-2124, org.w3c.css.sac.source_1.3.0.v200805290154.jar
-2124, org.w3c.css.sac_1.3.0.v200805290154.jar
-208, org.w3c.dom.events.source_3.0.0.draft20060413_v200905140418.jar
-208, org.w3c.dom.events_3.0.0.draft20060413_v200905140418.jar
-2166, org.w3c.dom.smil.source_1.0.1.v200903091627.jar
-2166, org.w3c.dom.smil_1.0.1.v200903091627.jar
-208, org.w3c.dom.svg.source_1.1.0.v200806040011.jar
-208, org.w3c.dom.svg_1.1.0.v200806040011.jar
-
-#BIRT 2.6
-3475, com.lowagie.text_2.1.7.v201004222200.jar
-3339, javax.wsdl_1.5.1.v201005080630.jar
-3353, javax.xml.rpc_1.1.0.v201005080400.jar
-3354, javax.xml.soap_1.2.0.v201005080501.jar
-2362, org.apache.axis_1.4.0.v201005080400.jar
-209, org.apache.batik.bridge_1.6.0.v200912221622.jar
-209, org.apache.batik.css_1.6.0.v200912221622.jar
-209, org.apache.batik.dom.svg_1.6.0.v200805290154.jar
-209, org.apache.batik.dom_1.6.0.v200912221622.jar
-209, org.apache.batik.ext.awt_1.6.0.v200805290154.jar
-209, org.apache.batik.parser_1.6.0.v200805290154.jar
-209, org.apache.batik.pdf_1.6.0.v200806031500.jar
-209, org.apache.batik.svggen_1.6.0.v200805290154.jar
-3340, org.apache.batik.transcoder_1.6.0.v200805290154.jar
-209, org.apache.batik.util.gui_1.6.0.v200805290154.jar
-209, org.apache.batik.util_1.6.0.v200805290154.jar
-209, org.apache.batik.xml_1.6.0.v200805290154.jar
-213, org.apache.commons.codec.source_1.3.0.v20100518-1140.jar
-213, org.apache.commons.codec_1.3.0.v20100518-1140.jar
-3355, org.apache.commons.discovery_0.2.0.v201004190315.jar
-3628, org.apache.derby.core.source_10.5.1.1_v20100129.jar
-3628, org.apache.derby.core_10.5.1.1_v20100129.jar
-3348, org.apache.xerces_2.9.0.v201005080400.jar
-3351, org.apache.xml.resolver_1.2.0.v201005080400.jar
-org.apache.xml.serializer_2.7.1.v201005080400.jar
-3176, org.mozilla.rhino.source_1.7.1.v20090608.jar
-3176, org.mozilla.rhino_1.7.1.v20090608.jar
-209, org.w3c.css.sac_1.3.0.v200805290154.jar
-209, org.w3c.dom.smil_1.0.0.v200806040011.jar
-209, org.w3c.dom.smil.source_1.0.0.v200806040011.jar
-209, org.w3c.dom.svg_1.1.0.v200806040011.jar
-209, org.w3c.sac.source_1.3.0.v20070710.jar
-209, org.w3c.sac_1.3.0.v20070710.jar
-
-#AMP
-3302, org.ascape.core.source_5.2.0.jar
-3302, org.ascape.core_5.2.0.jar
-3634, org.ascape.ui.amp.source_0.8.0.v201006142026.jar
-3634, org.ascape.ui.amp_0.8.0.v201006142026.jar
-
-#e4
-org.junit.source_4.8.1.v4_8_1_v20100427-1100.jar
-org.mortbay.jetty.util.source_6.1.23.v201004211559.jar
-com.jcraft.jsch.source_0.1.41.v200903070017.jar
-org.sat4j.core_2.2.0.v20100429.jar
-org.apache.commons.logging.source_1.0.4.v201005080501.jar
-org.mortbay.jetty.util_6.1.23.v201004211559.jar
-org.apache.jasper.source_5.5.17.v201004212143.jar
-org.apache.batik.util.gui_1.6.0.v200805290154.jar
-3626, org.pushingpixels.trident.source_1.2.0.v20100204-1500.jar
-org.mortbay.jetty.server.source_6.1.23.v201004211559.jar
-javax.servlet_2.5.0.v200910301333.jar
-javax.servlet.jsp.source_2.0.0.v200806031607.jar
-3530, org.mozilla.javascript.source_1.7.2.v201005080400.jar
-org.hamcrest.core.source_1.1.0.v20090501071000.jar
-org.apache.xerces_2.9.0.v201005080400.jar
-3626, org.pushingpixels.trident_1.2.0.v20100204-1500.jar
-javax.servlet.source_2.5.0.v200910301333.jar
-org.sat4j.pb_2.2.0.v20100429.jar
-org.apache.commons.codec_1.3.0.v20100518-1140.jar
-org.apache.commons.el.source_1.0.0.v201004212143.jar
-org.apache.batik.util_1.6.0.v200805290154.jar
-org.apache.commons.el_1.0.0.v201004212143.jar
-org.apache.xml.serializer_2.7.1.v201005080400.jar
-org.apache.lucene.analysis.source_1.9.1.v20100518-1140.jar
-org.w3c.css.sac_1.3.0.v200805290154.jar
-3530, org.mozilla.javascript_1.7.2.v201005080400.jar
-javax.xml_1.3.4.v201005080400.jar
-org.junit.source_3.8.2.v3_8_2_v20100427-1100.jar
-org.hamcrest.core_1.1.0.v20090501071000.jar
-org.apache.xml.resolver_1.2.0.v201005080400.jar
-org.junit_3.8.2.v3_8_2_v20100427-1100/junit.jar
-org.apache.ant.source_1.7.1.v20100518-1145.jar
-javax.servlet.jsp_2.0.0.v200806031607.jar
-org.w3c.dom.svg_1.1.0.v200806040011.jar
-org.apache.lucene_1.9.1.v20100518-1140.jar
-org.apache.batik.css_1.6.0.v200912221622.jar
-org.apache.batik.xml_1.6.0.v200805290154.jar
-org.apache.jasper_5.5.17.v201004212143.jar
-org.mortbay.jetty.server_6.1.23.v201004211559.jar
-org.apache.lucene.analysis_1.9.1.v20100518-1140.jar
-com.ibm.icu.source_4.2.1.v20100412.jar
-org.junit_4.8.1.v4_8_1_v20100427-1100/junit.jar
-org.objectweb.asm.source_3.2.0.v200909071300.jar
-3390, org.dojotoolkit_1.1.0.v200908251430.jar
-3555, javax.inject_1.0.0.v20091030.jar
-3959, javax.annotation.source_1.0.0.v20100513-0750.jar
-com.ibm.icu_4.2.1.v20100412.jar
-org.apache.commons.httpclient_3.1.0.v201005080502.jar
-org.w3c.dom.smil_1.0.0.v200806040011.jar
-3555, javax.inject.source_1.0.0.v20091030.jar
-com.jcraft.jsch_0.1.41.v200903070017.jar
-org.objectweb.asm_3.2.0.v200909071300.jar
-org.apache.commons.logging_1.0.4.v201005080501.jar
-3959, javax.annotation_1.0.0.v20100513-0750.jar
-
-#Eclipse 4.0
-org.junit.source_4.8.1.v4_8_1_v20100427-1100.jar
-org.apache.commons.logging_1.1.1.v201005080502.jar
-3935, org.mortbay.jetty.util.source_6.1.23.v201004211559.jar
-com.jcraft.jsch.source_0.1.41.v200903070017.jar
-org.sat4j.core_2.2.0.v20100429.jar
-org.apache.commons.logging.source_1.0.4.v201005080501.jar
-3935, org.mortbay.jetty.util_6.1.23.v201004211559.jar
-org.apache.jasper.source_5.5.17.v201004212143.jar
-3935, org.mortbay.jetty.server.source_6.1.23.v201004211559.jar
-org.apache.batik.util.gui_1.7.0.v200903091627.jar
-javax.servlet_2.5.0.v200910301333.jar
-javax.servlet.jsp.source_2.0.0.v200806031607.jar
-org.hamcrest.core.source_1.1.0.v20090501071000.jar
-javax.servlet.source_2.5.0.v200910301333.jar
-org.sat4j.pb_2.2.0.v20100429.jar
-org.apache.commons.codec_1.3.0.v20100518-1140.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-jai.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-antlr.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-starteam.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-jdepend.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-oro.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-trax.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-regexp.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-jmf.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-jsch.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-bsf.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-netrexx.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-swing.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-bcel.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-stylebook.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-javamail.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-junit.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-commons-net.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-commons-logging.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-weblogic.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-log4j.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-nodeps.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-launcher.jar
-org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-resolver.jar
-org.apache.commons.el.source_1.0.0.v201004212143.jar
-org.apache.commons.el_1.0.0.v201004212143.jar
-org.apache.lucene.analysis.source_1.9.1.v20100518-1140.jar
-org.apache.batik.util_1.7.0.v200903091627.jar
-org.apache.commons.httpclient.source_3.1.0.v201005080502.jar
-org.w3c.css.sac_1.3.1.v200903091627.jar
-javax.xml_1.3.4.v201005080400.jar
-org.junit.source_3.8.2.v3_8_2_v20100427-1100.jar
-org.hamcrest.core_1.1.0.v20090501071000.jar
-org.apache.commons.codec.source_1.3.0.v20100518-1140.jar
-org.junit_3.8.2.v3_8_2_v20100427-1100/junit.jar
-org.apache.ant.source_1.7.1.v20100518-1145.jar
-javax.servlet.jsp_2.0.0.v200806031607.jar
-org.w3c.dom.svg_1.1.0.v200806040011.jar
-org.apache.lucene_1.9.1.v20100518-1140.jar
-org.apache.batik.css_1.6.0.v200912221622.jar
-org.apache.jasper_5.5.17.v201004212143.jar
-org.mortbay.jetty.server_6.1.23.v201004211559.jar
-org.apache.lucene.analysis_1.9.1.v20100518-1140.jar
-3699, com.ibm.icu.source_4.2.1.v20100412.jar
-org.junit_4.8.1.v4_8_1_v20100427-1100/junit.jar
-org.objectweb.asm.source_3.2.0.v200909071300.jar
-javax.inject_1.0.0.v20091030.jar
-3699, com.ibm.icu_4.2.1.v20100412.jar
-org.apache.commons.httpclient_3.1.0.v201005080502.jar
-org.w3c.dom.smil_1.0.0.v200806040011.jar
-com.jcraft.jsch_0.1.41.v200903070017.jar
-org.objectweb.asm_3.2.0.v200909071300.jar
-org.apache.commons.logging_1.0.4.v201005080501.jar
-javax.annotation_1.0.0.v20100513-0750.jar
-
-#EBam
-4256, ch.qos.logback.classic_0.9.19.v20100519-1505.jar
-4249, ch.qos.logback.core_0.9.19.v20100419-1216.jar
-ch.qos.logback.slf4j_0.9.19.v20100519-1910.jar
-#com.ibm.icu_4.2.1.v20100412.jar
-#com.jcraft.jsch_0.1.41.v200903070017.jar
-#com.lowagie.text_2.1.7.v201004222200.jar
-4259, javax.activation_1.1.0.v201005080500.jar
-#javax.jws_2.0.0.v201005080400.jar
-4259, javax.mail_1.4.0.v201005080615.jar
-#javax.servlet.jsp_2.0.0.v200806031607.jar
-#javax.servlet_2.5.0.v200910301333.jar
-#javax.wsdl_1.5.1.v201005080630.jar
-#javax.wsdl_1.6.2.v201005080631.jar
-#javax.xml.bind_2.0.0.v20080604-1500.jar
-#javax.xml.bind_2.1.9.v201005080401.jar
-#javax.xml.rpc_1.1.0.v201005080400/lib/jaxrpc.jar
-#javax.xml.soap_1.2.0.v201005080501/lib/saaj.jar
-#javax.xml.stream_1.0.1.v201004272200.jar
-#javax.xml.ws_2.1.0.v200902101523.jar
-#javax.xml_1.3.4.v201005080400.jar
-#java_cup.runtime_0.10.0.v201005080400.jar
-#net.sourceforge.lpg.lpgjavaruntime_1.1.0.v201004271650.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-antlr.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-bcel.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-bsf.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-log4j.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-oro.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-regexp.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-apache-resolver.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-commons-logging.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-commons-net.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-jai.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-javamail.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-jdepend.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-jmf.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-jsch.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-junit.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-launcher.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-netrexx.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-nodeps.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-starteam.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-stylebook.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-swing.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-trax.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant-weblogic.jar
-#org.apache.ant_1.7.1.v20100518-1145/lib/ant.jar
-#org.apache.axis_1.4.0.v201005080400/lib/axis-ant.jar
-#org.apache.axis_1.4.0.v201005080400/lib/axis.jar
-#org.apache.batik.bridge_1.6.0.v200912221622.jar
-#org.apache.batik.css_1.6.0.v200912221622.jar
-#org.apache.batik.dom.svg_1.6.0.v200805290154.jar
-#org.apache.batik.dom_1.6.0.v200912221622.jar
-#org.apache.batik.ext.awt_1.6.0.v200805290154.jar
-#org.apache.batik.parser_1.6.0.v200805290154.jar
-#org.apache.batik.pdf_1.6.0.v200806031500.jar
-#org.apache.batik.svggen_1.6.0.v200805290154.jar
-#org.apache.batik.transcoder_1.6.0.v200805290154.jar
-#org.apache.batik.util.gui_1.6.0.v200805290154.jar
-#org.apache.batik.util_1.6.0.v200805290154.jar
-#org.apache.batik.xml_1.6.0.v200805290154.jar
-#org.apache.bcel_5.2.0.v201005080400.jar
-#org.apache.commons.codec.source_1.3.0.v20100518-1140.jar
-#org.apache.commons.codec_1.3.0.v20100106-1700.jar
-#org.apache.commons.codec_1.3.0.v20100518-1140.jar
-#org.apache.commons.collections_3.2.0.v201005080500.jar
-#org.apache.commons.discovery_0.2.0.v201004190315/lib/commons-discovery-0.2.jar
-#org.apache.commons.el_1.0.0.v201004212143.jar
-#org.apache.commons.httpclient_3.1.0.v20080605-1935.jar
-#org.apache.commons.httpclient_3.1.0.v201005080502.jar
-#org.apache.commons.lang_2.1.0.v201005080500.jar
-#org.apache.commons.lang_2.3.0.v201005080501.jar
-#org.apache.commons.logging_1.0.4.v200904062259.jar
-#org.apache.commons.logging_1.0.4.v201005080501.jar
-#org.apache.commons.net_2.0.0.v200905272248.jar
-#org.apache.derby.core_10.5.1.1_v20100129/derby.jar
-#org.apache.jasper_5.5.17.v201004212143.jar
-#org.apache.log4j_1.2.15.v201005080500.jar
-#org.apache.lucene.analysis_1.9.1.v20100518-1140.jar
-#org.apache.lucene_1.9.1.v20100518-1140.jar
-#org.apache.oro_2.0.8.v201005080400.jar
-#org.apache.velocity_1.5.0.v200905192330.jar
-#org.apache.ws.commons.util_1.0.0.v20100518-1135.jar
-#org.apache.wsil4j_1.0.0.v200901211807.jar
-4261, org.apache.xalan_2.7.1.v201005080400.jar
-4262, org.apache.xerces_2.9.0.v201005080400.jar
-4264, org.apache.xml.resolver_1.2.0.v201005080400.jar
-4265, org.apache.xml.serializer_2.7.1.v201005080400.jar
-#org.apache.xmlrpc_3.0.0.v20100427-1100.jar
-#org.hamcrest.core_1.1.0.v20090501071000.jar
-#org.jdom_1.0.0.v201005080400.jar
-#org.junit_3.8.2.v3_8_2_v20100427-1100/junit.jar
-#org.junit_4.8.1.v4_8_1_v20100427-1100/junit.jar
-#org.mortbay.jetty.server_6.1.23.v201004211559.jar
-#org.mortbay.jetty.util_6.1.23.v201004211559.jar
-#org.mozilla.javascript_1.7.2.v201005080400.jar
-#org.mozilla.rhino_1.7.1.v20090608/lib/js.jar
-#org.objectweb.asm_3.2.0.v200909071300.jar
-#org.sat4j.core_2.2.0.v20100429.jar
-#org.sat4j.pb_2.2.0.v20100429.jar
-4247, org.slf4j.api_1.5.11.v20100519-1910.jar
-#org.uddi4j_2.0.5.v200805270300.jar
-#org.w3c.css.sac_1.3.0.v200805290154.jar
-#org.w3c.dom.smil_1.0.0.v200806040011.jar
-#org.w3c.dom.svg_1.1.0.v200806040011.jar
-#org.w3c.sac_1.3.0.v20070710/lib/flute.jar
-
-#Gemini Web
-4135, com.springsource.javax.activation-1.1.1.jar
-4317, com.springsource.javax.annotation-1.0.0.jar
-4318, com.springsource.javax.ejb-3.0.0.jar
-4319, com.springsource.javax.el-1.0.0.jar
-4320, com.springsource.javax.mail-1.4.0.jar
-4321, com.springsource.javax.persistence-1.0.0.jar
-4110, com.springsource.javax.servlet-2.5.0.jar
-4322, com.springsource.javax.servlet.jsp-2.1.0.jar
-4323, com.springsource.javax.transaction-1.1.0.jar
-4324, com.springsource.javax.xml.bind-2.1.7.jar
-4325, com.springsource.javax.xml.rpc-1.1.0.jar
-4326, com.springsource.javax.xml.soap-1.3.0.jar
-4327, com.springsource.javax.xml.stream-1.0.1.jar
-4328, com.springsource.javax.xml.ws-2.1.1.jar
-4329, com.springsource.org.aopalliance-1.0.0.jar
-4399, com.springsource.org.apache.catalina.ha.springsource-6.0.29.S2-r1559.jar
-4399, com.springsource.org.apache.catalina.springsource-6.0.29.S2-r1559.jar
-4399, com.springsource.org.apache.catalina.tribes.springsource-6.0.29.S2-r1559.jar
-4399, com.springsource.org.apache.commons.logging-1.1.1.jar
-4399, com.springsource.org.apache.coyote.springsource-6.0.29.S2-r1559.jar
-4399, com.springsource.org.apache.el.springsource-6.0.29.S2-r1559.jar
-4399, com.springsource.org.apache.jasper.springsource-6.0.29.S2-r1559.jar
-4399, com.springsource.org.apache.juli.extras.springsource-6.0.29.S2-r1559.jar
-com.springsource.slf4j.api-1.6.1.jar
-com.springsource.slf4j.nop-1.6.1.jar
-4333, org.springframework.aop-3.0.0.RELEASE.jar
-4334, org.springframework.beans-3.0.0.RELEASE.jar
-4335, org.springframework.context-3.0.0.RELEASE.jar
-4336, org.springframework.core-3.0.0.RELEASE.jar
-4337, org.springframework.osgi.core-1.2.1.jar
-4338, org.springframework.osgi.io-1.2.1.jar
-
-#Virgo VWS
-3942, com.springsource.javax.transaction-1.1.0.jar
-4033, com.springsource.org.aopalliance-1.0.0.jar
-4025, com.springsource.org.apache.commons.codec-1.3.0.jar
-3956, com.springsource.org.apache.commons.httpclient-3.1.0.jar
-3957, com.springsource.org.apache.commons.logging-1.1.1.jar
-com.springsource.org.aspectj.runtime-1.6.6.RELEASE.jar #eclipse.org
-4377, com.springsource.slf4j.api-1.6.1.jar
-com.springsource.org.aspectj.weaver-1.6.6.RELEASE.jar #eclipse.org
-4396, com.springsource.slf4j.org.apache.commons.logging-1.6.1.jar
-3998, org.apache.felix.configadmin-1.2.4.jar
-4000, org.apache.felix.eventadmin-1.0.0.jar
-4003, org.springframework.aop-3.0.0.RELEASE.jar
-4004, org.springframework.asm-3.0.0.RELEASE.jar
-4006, org.springframework.beans-3.0.0.RELEASE.jar
-4007, org.springframework.context-3.0.0.RELEASE.jar
-4008, org.springframework.context.support-3.0.0.RELEASE.jar
-4009, org.springframework.core-3.0.0.RELEASE.jar
-4010, org.springframework.expression-3.0.0.RELEASE.jar
-4106, org.springframework.osgi.core-1.2.1.jar
-4107, org.springframework.osgi.extender-1.2.1.jar
-4108, org.springframework.osgi.io-1.2.1.jar
-3932, com.springsource.javax.activation-1.1.0.jar
-3941, com.springsource.javax.annotation-1.0.0.jar
-3944, com.springsource.javax.ejb-3.0.0.jar
-3947, com.springsource.javax.el-1.0.0.jar
-4026, com.springsource.javax.jms-1.1.0.jar
-4035, com.springsource.javax.mail-1.4.0.jar
-3995, com.springsource.javax.persistence-1.0.0.jar
-3940, com.springsource.javax.portlet-2.0.0.jar
-3943, com.springsource.javax.servlet-2.5.0.jar
-3945, com.springsource.javax.servlet.jsp-2.1.0.jar
-4032, com.springsource.javax.servlet.jsp.jstl-1.1.2.jar
-3942, com.springsource.javax.transaction-1.1.0.jar
-4036, com.springsource.javax.xml.bind-2.1.7.jar
-4029, com.springsource.javax.xml.rpc-1.1.0.jar
-4021, com.springsource.javax.xml.soap-1.3.0.jar
-4023, com.springsource.javax.xml.stream-1.0.1.jar
-X com.springsource.javax.xml.ws-2.1.1.jar #listed as unused, approved
-3988, com.springsource.org.apache.catalina.ha.springsource-6.0.20.S2-r5956.jar
-3988, com.springsource.org.apache.catalina.springsource-6.0.20.S2-r5956.jar
-3988, com.springsource.org.apache.catalina.tribes.springsource-6.0.20.S2-r5956.jar
-4028, com.springsource.org.apache.commons.fileupload-1.2.0.jar
-4030, com.springsource.org.apache.commons.httpclient-3.1.0.jar
-3987, com.springsource.org.apache.commons.io-1.4.0.jar
-3988, com.springsource.org.apache.coyote.springsource-6.0.20.S2-r5956.jar
-3988, com.springsource.org.apache.el.springsource-6.0.20.S2-r5956.jar
-3988, com.springsource.org.apache.jasper.springsource-6.0.20.S2-r5956.jar
-3988, com.springsource.org.apache.juli.extras.springsource-6.0.20.S2-r5956.jar
-4032, com.springsource.org.apache.taglibs.standard-1.1.2.jar
-4377, com.springsource.slf4j.api-1.6.1.jar
-4379, com.springsource.slf4j.bridge-1.6.1.jar
-4378, com.springsource.slf4j.nop-1.6.1.jar
-4394, com.springsource.slf4j.org.apache.commons.logging-1.6.1.jar
-4396, com.springsource.slf4j.org.apache.log4j-1.6.1.jar
-4011, org.springframework.jdbc-3.0.0.RELEASE.jar
-4012, org.springframework.jms-3.0.0.RELEASE.jar
-4134, org.springframework.js-2.0.8.RELEASE.jar
-4013, org.springframework.orm-3.0.0.RELEASE.jar
-4014, org.springframework.oxm-3.0.0.RELEASE.jar
-4015, org.springframework.transaction-3.0.0.RELEASE.jar
-4016, org.springframework.web-3.0.0.RELEASE.jar
-4017, org.springframework.web.portlet-3.0.0.RELEASE.jar
-4018, org.springframework.web.servlet-3.0.0.RELEASE.jar
-3999, org.apache.felix.log-1.0.0.jar
-3988, com.springsource.org.apache.jasper.org.eclipse.jdt.springsource-6.0.20.S2-r5956.jar
-
-# Jetty 7.1
-3927, ch.qos.logback.classic_0.9.19.v20100519-1505.jar
-3927, ch.qos.logback.classic.source_0.9.19.v20100519-1505.jar
-ch.qos.logback.core.source_0.9.19.v20100419-1216.jar
-ch.qos.logback.slf4j_0.9.19.v20100519-1910.jar
-ch.qos.logback.slf4j.source_0.9.19.v20100519-1910.jar
-com.sun.el_1.0.0.v201004190952.jar
-com.sun.el.source_1.0.0.v201004190952.jar
-javax.el_2.1.0.v201004190952.jar
-javax.el.source_2.1.0.v201004190952.jar
-3896, javax.mail.glassfish_1.4.1.v201005082020.jar
-3896, javax.mail.glassfish.source_1.4.1.v201005082020.jar
-3766, javax.servlet.jsp_2.1.0.v201004190952.jar
-javax.servlet.jsp.jstl_1.2.0.v201004190952.jar
-javax.servlet.jsp.jstl.source_1.2.0.v201004190952.jar
-3766, javax.servlet.jsp.source_2.1.0.v201004190952.jar
-3912, javax.transaction.source_1.1.1.v201004190952.jar
-3766, org.apache.jasper.glassfish_2.1.0.v201007080150.jar
-3766, org.apache.jasper.glassfish.source_2.1.0.v201007080150.jar
-3766, org.apache.taglibs.standard.glassfish_1.2.0.v201004190952.jar
-3766, org.apache.taglibs.standard.glassfish.source_1.2.0.v201004190952.jar
-4119, org.hamcrest.core.source_1.1.0.v20090501071000.jar
-4118, org.junit_4.8.1.v4_8_1_v20100427-1100.jar
-4118, org.junit.source_4.8.1.v4_8_1_v20100427-1100.jar
-3898, org.objectweb.asm.source_3.2.0.v200909071300.jar
-3977, org.slf4j.api.source_1.5.11.v20100519-1910.jar
-3978, org.slf4j.ext.source_1.5.11.v20100419-1106.jar
-3979, org.slf4j.jcl_1.5.11.v20100419-1106.jar
-3979, org.slf4j.jcl.source_1.5.11.v20100419-1106.jar
-3980, org.slf4j.jul_1.5.11.v20100419-1106.jar
-3980, org.slf4j.jul.source_1.5.11.v20100419-1106.jar
-3981, org.slf4j.log4j_1.5.11.v20100419-1106.jar
-3981, org.slf4j.log4j.source_1.5.11.v20100419-1106.jar
-
-Jetty 7.2
-3225, servlet-api-2.5.jar
-jetty-servlets-7.2.0.RC0.jar
-jetty-jndi-7.2.0.RC0.jar
-jetty-client-7.2.0.RC0.jar
-jetty-ajp-7.2.0.RC0.jar
-jetty-plus-7.2.0.RC0.jar
-jetty-servlet-7.2.0.RC0.jar
-jetty-continuation-7.2.0.RC0.jar
-jetty-http-7.2.0.RC0.jar
-jetty-rewrite-7.2.0.RC0.jar
-jetty-server-7.2.0.RC0.jar
-jetty-jmx-7.2.0.RC0.jar
-jetty-util-7.2.0.RC0.jar
-jetty-deploy-7.2.0.RC0.jar
-jetty-security-7.2.0.RC0.jar
-jetty-annotations-7.2.0.RC0.jar
-jetty-webapp-7.2.0.RC0.jar
-jetty-jsp-2.1-7.2.0.RC0.jar
-javax.servlet.jsp.jstl_1.2.0.v201004190952.jar
-ecj-3.6.jar
-javax.el_2.1.0.v201004190952.jar
-com.sun.el_1.0.0.v201004190952.jar
-jetty-policy-7.2.0.RC0.jar
-jetty-io-7.2.0.RC0.jar
-jetty-websocket-7.2.0.RC0.jar
-jetty-xml-7.2.0.RC0.jar
-
-#Riena
-1955, com.caucho.hessian_3.1.3.jar
-1955, com.caucho.hessian.source_3.1.3.jar
-
-#BIRT
-1883, org.apache.derby.core_10.3.1.4.jar
-1883, org.apache.derby.core.source_10.3.1.4.jar
-1864, org.mozilla.rhino_1.6.7.v20071217-1567w31191325.jar
-2114, com.lowagie.itext_1.5.4.v20080225-1437w31191339.jar
-2114, com.lowagie.itext.source_1.5.4.v20090608.jar
-209, org.apache.batik.swing_1.6.0.v200805290154.jar
-209, org.apache.batik.extension_1.6.0.v200805290154.jar
-1007, com.lowagie.itext_1.5.2.*.jar
-1007, com.lowagie.itext_1.3.0.*.jar
-228, org.apache.derby.core_10.1.2.1.jar
-253, org.apache.xerces_2.8.0.*.jar
-253, org.apache.xerces.feature_2.8.0.*.jar
-
-1187, org.apache.derby_10.1.2.1_v200803061811.jar
-1187, org.apache.derby.source_10.1.2.1_v200803061811.jar
-1765, org.apache.commons.httpclient_3.1.0.v20080605-1935.jar
-1765, org.apache.commons.httpclient.source_3.1.0.v20080605-1935.jar
-3011, org.apache.commons.collections.source_3.2.0.v200803061811.jar
-
-3428, javax.xml.bind_2.1.12.v200912160909.jar
-1614, javax.jms_1.1.0.jar
-1621, javax.resource_1.5.0.jar
-1613, javax.transaction_1.1.0.jar
-1262, javax.xml.ws_2.0.0.v200902170419.jar
-1701, javax.wsdl_1.6.2.v200806030405.jar
-
-
-131, org.apache.commons.codec.source_1.3.0.v20100518-1140.jar
-235, javax.servlet.jsp.source_2.0.0.x.jar
-220, org.apache.commons.logging.source_1.0.4.x.jar
-289, org.mortbay.jetty_5.1.11.x.jar
-1075, org.mortbay.jetty_5.1.11.x.jar
-1158, org.mortbay.jetty_5.1.11.x.jar
-243, org.apache.lucene.source_1.9.1.x.jar
-246, org.apache.jasper_5.5.17.*.jar
-2970, com.ibm.icu_4.0.1.*.jar
-3040, com.jcraft.jsch_0.1.41.*.jar
-
-1049, org.apache.commons.codec_1.3.0.*.jar
-4983, org.apache.commons.lang_2.4.0.*.jar
-4457, com.google.gwtorm_1.1.4.*.jar
-4737, com.google.gerrit.prettify_2.1.5.*.jar
-4458, com.google.gerrit.common_2.1.5.*.jar
-1475, javax.xml.rpc_1.1.0.*.jar
-1567, org.apache.xmlrpc_3.0.0.*.jar
-4730, com.google.gson_1.6.0.*.jar
-4459, com.google.gerrit.reviewdb_2.1.5.*.jar
-4981, org.apache.commons.io_2.0.1.*.jar
-4456, com.google.gwtjsonrpc_1.2.2.*.jar
-4123, com.sun.xml.bind_2.2.0.*.jar
-1568, org.apache.ws.commons.util_1.0.1.*.jar
-4980, com.google.gwt.user_2.0.4.*.jar
-4786, org.jdom_1.1.1.*.jar
-1474, org.apache.commons.discovery_0.2.0.*.jar
-4997, javax.xml.soap_1.3.0.*.jar
-1050, org.apache.commons.logging_1.0.4.*.jar
-
-jackson-mapper-asl_1.5.5.jar
- jackson-core-asl_1.5.5.jar
- org.apache.commons.net_2.0.0.*.jar
-3862, ch.qos.logback.slf4j_0.9.19.*.jar
- org.apache.commons.collections_3.2.1.*.jar
- org.apache.commons.dbutils_1.2.0.*.jar
- com.springsource.org.postgresql.jdbc4_8.3.604.*.jar
- jaxrpc.jar
- org.apache.commons.pool_1.4.0.*.jar
-4228, org.slf4j.ext_1.5.11.*.jar
- com.springsource.oracle.jdbc_10.2.0.*.jar
- com.springsource.com.mysql.jdbc_5.1.6.*.jar
- com.springsource.javax.resource_1.5.0.*.jar
-
-1367, com.ibm.icu_3.6.1.*.jar
-1367, com.ibm.icu.nlBidi_3.6.1.*.jar
-1367, com.ibm.icu.nl2_3.6.1.*.jar
-1367, com.ibm.icu.nl2a_3.6.1.*.jar
-1367, com.ibm.icu.nl1_3.6.1.*.jar
-
-1153, com.jcraft.jsch_0.1.31.*.jar
-
-243, lucene-core-1.9.1.jar
-280, icu4j_3_4.jar
-1081, net.sourceforge.lpg.lpgjavaruntime_1.1.0.*.jar
-
-# Jetty
-3833, javax.servlet.jsp.glassfish.source_2.1.0.*.jar
-3833, javax.servlet.jsp.glassfish_2.1.0.*.jar
-3833, javax.el.source_2.1.0.*.jar
-3833, com.sun.el_1.0.0.*.jar
-3861, ch.qos.logback.core.source_0.9.19.*.jar
-3457, javax.el_2.1.0.*.jar
-3861, ch.qos.logback.core_0.9.19.*.jar
-3457, javax.servlet.jsp.jstl_1.2.0.*.jar
-3862, ch.qos.logback.slf4j.source_0.9.19.*.jar
-3833, com.sun.el.source_1.0.0.*.jar
-3457, javax.servlet.jsp.jstl.source_1.2.0.*.jar
-3766, org.mortbay.jetty.jsp-2.1-glassfish_2.1.0.v20100127.jar
-3766, org.mortbay.jetty.jsp-api-2.1-glassfish_2.1.0.jar
-4375, ch.qos.logback.classic.source_0.9.24.*.jar
-4403, org.slf4j.jcl_1.6.1.*.jar
- javax.security.auth.message_1.0.0.*.jar
-4375, ch.qos.logback.slf4j_0.9.24.*.jar
-4375, ch.qos.logback.slf4j.source_0.9.24.*.jar
-4377, org.slf4j.api_1.6.1.*.jar
-4375, ch.qos.logback.classic_0.9.24.*.jar
-4403, org.slf4j.jcl.source_1.6.1.*.jar
-4402, org.slf4j.ext.source_1.6.1.*.jar
-4404, org.slf4j.jul_1.6.1.*.jar
-4405, org.slf4j.log4j.source_1.6.1.*.jar
-4405, org.slf4j.log4j_1.6.1.*.jar
-4404, org.slf4j.jul.source_1.6.1.*.jar
-4376, ch.qos.logback.core.source_0.9.24.*.jar
-4377, org.slf4j.api.source_1.6.1.*.jar
-4376, ch.qos.logback.core_0.9.24.*.jar
-4824, ch.qos.logback.slf4j_0.9.27.*.jar
-4720, org.objectweb.asm_3.3.1.*.jar
-4825, ch.qos.logback.core.source_0.9.27.*.jar
-4824, ch.qos.logback.slf4j.source_0.9.27.*.jar
-4825, ch.qos.logback.core_0.9.27.*.jar
-4824, ch.qos.logback.classic.source_0.9.27.*.jar
-4824, ch.qos.logback.classic_0.9.27.*.jar
-3035, org.apache.geronimo.specs.geronimo-annotation_1.0_spec_1.1.1.jar
-3035, org.apache.geronimo.specs.geronimo-annotation_1.0_spec_1.1.1.jar.pack.gz
-3385, org.apache.geronimo.specs.geronimo-jaspic_1.0_spec_1.0.0.jar.pack.gz
-3385, org.apache.geronimo.specs.geronimo-jaspic_1.0_spec_1.0.0.jar
-3766, javax.servlet.jsp.glassfish.source.f_2.1.0.*.jar
-3766, javax.servlet.jsp.glassfish.f_2.1.0.*.jar
-4720, org.objectweb.asm.source_3.3.1.*.jar
-1461, activation-1.1.jar
-1208, mail-1.4.jar
-3766, jsp-2.1-glassfish-2.1.v20091210.jar
-3766, jsp-api-2.1-glassfish-2.1.v20091210.jar
- core-3.1.1.*.jar
-3217, servlet-api-3.0.jar
- javax.persistence_2.0.1.*.jar
-1937, asm-3.1.jar
-1937, asm-commons-3.1.jar
-1937, asm-tree-3.1.jar
-3035, geronimo-annotation_1.0_spec-1.0.jar
-1013, ant-1.6.5.*.jar
-3766, jsp-2.1-glassfish-9.1.02.B04.p0.jar
-3766, jsp-api-2.1-glassfish-9.1.02.B04.p0.jar
- jcl104-over-slf4j-1.5.6.jar
-3084, slf4j-api-1.5.6.jar
-3084, slf4j-simple-1.5.6.jar
-3766, jsp-api-2.1-glassfish-9.1.1.B60.25.p1.jar
-3766, jsp-2.1-glassfish-9.1.1.B60.25.p1.jar
-3035, geronimo-annotation_1.0_spec-1.1.1.jar
-
-104, org.apache.xml.resolver_1.1.0.*.jar
-
- jaxrpc.jar
-4224, org.apache.commons.dbutils_1.3.0.*.jar
-4999, org.apache.commons.net_2.0.0.*.jar
-4511, org.codehaus.jackson.core.source_1.6.0.*.jar
-4511, org.codehaus.jackson.core_1.6.0.*.jar
-4511, org.codehaus.jackson.mapper.source_1.6.0.*.jar
-4511, org.codehaus.jackson.mapper_1.6.0.*.jar
-3526, org.objectweb.asm_3.2.0.*.jar
-
-248, org.apache.xerces.feature_2.8.0.*.jar
-
-3385, javax.security.auth.message_1.0.0.*.jar
-3385, javax.security.auth.message.source_1.0.0.*.jar
-4991, ch.qos.logback.core_0.9.27.*.jar
-4991, ch.qos.logback.core.source_0.9.27.*.jar
-4992, ch.qos.logback.classic.source_0.9.27.*.jar
-4992, ch.qos.logback.classic_0.9.27.*.jar
-4992, ch.qos.logback.slf4j.source_0.9.27.*.jar
-4992, ch.qos.logback.slf4j_0.9.27.*.jar
-
-130, backport-util-concurrent-2.2.jar
-1598, xmlbeans-2.3.0.*.jar
-
-1919, com.ibm.icu_3.8.1.*.jar
-1664, com.sun.jaxb_2.1.6.*.jar
-2683, javax.el_1.0.0.*.jar
-1980, javax.servlet.jsp_2.1.0.*.jar
-2580, org.apache.activemq.core_5.2.0.*.jar
-2765, org.apache.commons.dbcp_1.2.2.*.jar
-2500, org.apache.derby_10.4.1.*.jar
-2556, org.apache.lucene_2.3.2.*.jar
-2557, org.apache.lucene.analysis_2.3.2.*.jar
-2558, org.apache.lucene.search.highlight_2.3.2.*.jar
-2742, org.apache.ode_2.0.0.*.jar
-2561, org.apache.tomcat_6.0.18.*.jar
-3086, org.openrdf.sesame2_2.2.4.*.jar
-3084, org.slf4j.api_1.5.6.*.jar
-3085, org.slf4j.log4j12_1.5.6.*.jar
-2755, wstx-asl-3.2.4.jar
-2684, stax-api-1.0.1.jar
-2756, XmlSchema-1.4.2.*.jar
-2750, httpcore-4.0.jar
-2751, neethi-2.0.4.*.jar
-2678, commons-lang-2.4.jar
-2555, log4j-1.2.15.*.jar
-3177, com.novell.ldap_2.3.30.*.jar
-
-2446, org.antlr.runtime_3.1.b1_3.1.0.*.jar
-2445, org.jdom_1.0_1.0.0.*.jar
-3918, org.h2_1.1.117_1.1.117.*.jar
-
-3656, lpg.runtime.java_2.0.17.*.jar
-3656, lpg.runtime.java.source_2.0.17.*.jar
-1081, net.sourceforge.lpg.lpgjavaruntime.source_1.1.0.*.jar
-
-4810, org.h2_1.1.117.*.jar
-
-4120, antlr-runtime-3.0.jar
-4120, org.antlr.runtime_3.0.0.*.jar
-4120, org.antlr.runtime.source_3.0.0.*.jar
-
-3217, javax.servlet_3.0.0.*.jar
-3217, javax.servlet.source_3.0.0.*.jar
-5013, com.sun.el_2.2.0.*.jar
-5013, com.sun.el.source_2.2.0.*.jar
-5012, javax.el_2.2.0.*.jar
-5012, javax.el.source_2.2.0.*.jar
-5014, javax.annotation.source_1.1.0.*.jar
-5014, javax.annotation_1.1.0.*.jar
-4711, org.apache.jasper.glassfish_2.2.2.*.jar
-4711, org.apache.jasper.glassfish.source_2.2.2.*.jar
-3209, javax.activation.source_1.1.0.*.jar
-
-5011, org.sat4j.core_2.3.0.*.jar
-5011, org.sat4j.pb_2.3.0.*.jar
-
-4785, org.apache.poi_3.2.0.*.jar
-
-3636, org.apache.commons.jxpath_1.2.0.*.jar
-4192, org.apache.commons.jxpath_1.3.0.*.jar
-3702, org.prefuse_0.1.0.*.jar
-
-3428, javax.xml.bind.source_2.1.12.*.jar
-
-1159, org.apache.log4j_1.2.13.*.jar
-4947, org.apache.hadoop.zookeeper_3.3.1.*.jar
-3285, com.google.collect_1.0.0.*.jar
-3820, org.antlr.runtime_3.2.0.*.jar
-2993, org.apache.log4j.source_1.2.15.*.jar
-
-4561, org.apache.felix.gogo.runtime_0.6.1.*.jar
-4795, com.ibm.icu.base_4.4.2.*.jar
-4795, com.ibm.icu.base.source_4.4.2.*.jar
-4795, com.ibm.icu_4.4.2.*.jar
-1396, org.junit4_4.3.1.*.jar
-1578, com.ibm.icu.source_3.6.1.*.jar
-1367, com.ibm.icu.source_3.6.1.*.jar
-236, javax.servlet.source_2.4.0.*.jar
-1232, org.apache.ant_1.7.0.*.jar
-1232, org.apache.ant.source_1.7.0.*.jar
-289, org.mortbay.jetty.source_5.1.11.*.jar
-246, org.apache.jasper.source_5.5.17.*.jar
-243, org.apache.lucene.analysis.source_1.9.1.*.jar
-217, org.apache.commons.el.source_1.0.0.*.jar
-
-2210, org.apache.lucene_1.4.3.*.jar
-298, org.junit4_4.1.0.*.jar
-1116, com.ibm.icu.source_3.4.5.*.jar
-1116, com.ibm.icu_3.4.5.*.jar
-1116, com.ibm.icu34.data.update_3.4.5.*.jar
-293, com.jcraft.jsch_0.1.28.*.jar
-1367, com.ibm.icu36.data.update_3.6.1.*.jar
-
-2356, org.apache.commons.codec_1.2.0.*.jar
-1096, org.apache.commons.httpclient_3.0.1.*.jar
-2349, org.sat4j.core_2.0.0.*.jar
-2349, org.sat4j.pb_2.0.0.*.jar
-2774, org.sat4j.core_2.0.3.*.jar
-2774, org.sat4j.pb_2.0.3.*.jar
-1960, org.mortbay.jetty.util_6.1.7.*.jar
-1960, org.mortbay.jetty.util.source_6.1.7.*.jar
-1396, org.junit4.source_4.3.1.*.jar
-
-1919, com.ibm.icu.base.source_3.8.1.*.jar
-1919, com.ibm.icu.source_3.8.1.*.jar
-1919, com.ibm.icu.base_3.8.1.*.jar
-2014, com.jcraft.jsch_0.1.37.*.jar
-1962, org.mortbay.jetty.source_5.1.14.*.jar
-2960, org.sat4j.core_2.1.0.*.jar
-2960, org.sat4j.pb_2.1.0.*.jar
-2583, org.junit4.source_4.5.0.*.jar
-2583, org.junit4_4.5.0.*.jar
-3040, com.jcraft.jsch.source_0.1.41.*.jar
-3031, org.mortbay.jetty.server.source_6.1.15.*.jar
-3031, org.mortbay.jetty.util.source_6.1.15.*.jar
-3487, com.ibm.icu.base_4.0.1.*.jar
-3487, com.ibm.icu.base.source_4.0.1.*.jar
-3487, com.ibm.icu.source_4.0.1.*.jar
-2476, org.apache.ant.source_1.7.1.*.jar
-3503, org.sat4j.core_2.1.1.*.jar
-3503, org.sat4j.pb_2.1.1.*.jar
-3677, org.junit4_4.8.1.*.jar
-2485, org.apache.batik.util.gui_1.7.0.*.jar
-2483, org.apache.batik.util_1.7.0.*.jar
-5022, org.junit_4.8.2.*.jar
-5022, org.junit.source_4.8.2.*.jar
-3724, org.apache.lucene_2.9.1.*.jar
-3724, org.apache.lucene.source_2.9.1.*.jar
-3724, org.apache.lucene.core_2.9.1.*.jar
-3724, org.apache.lucene.core.source_2.9.1.*.jar
-4727, org.apache.ant.source_1.8.2.*.jar
-4727, org.apache.ant_1.8.2.*.jar
-3725, org.apache.lucene.analysis_2.9.1.*.jar
-3725, org.apache.lucene.analysis.source_2.9.1.*.jar
-4795, com.ibm.icu.source_4.4.2.*.jar
-3780, org.junit4_4.7.0.*.jar
-3780, org.junit4.source_4.7.0.*.jar
-3780, org.junit_4.7.0.*.jar
-3780, org.junit.source_4.7.0.*.jar
-4727, org.apache.ant_1.8.2.*.jar
-4727, org.apache.ant.source_1.8.2.*.jar
-
-1941, org.apache.bsf_2.4.0.*.jar
-2675, org.mozilla.xpcom_1.8.1.3-*/MozillaInterfaces.jar
-299, org.junit_3.8.2.v20090203-1005/junit
-1942, org.apache.commons.lang_2.3.0.*.jar
-19, org.apache.log4j_1.2.8.*.jar
-238, org.apache.log4j_1.2.8.*.jar
-1887, org.easymock_2.3.0.*.jar
-1159, org.apache.log4j.source_1.2.13.*.jar
-1593, org.apache.log4j.source_1.2.13.*.jar
-2551, org.easymock.source_2.4.0.*.jar
-1387, org.apache.commons.beanutils.source_1.7.0.*.jar
-2868, com.ibm.icu.source_4.0.0.*.jar
-2868, com.ibm.icu_4.0.0.*.jar
-
-1795, asm-all-3.0.jar
-1795, org.objectweb.asm_3.0.0.*.jar
-
-# Not version safe:
-2236, truezip-6.jar
-2236, de.schlichtherle.truezip_6.6.0.*/lib/truezip-6.jar
-2236, de.schlichtherle.truezip_6.6.0.*.jar
-2761, jmunit.framework_1.2.1.*.jar
-3594, antenna.preprocessor.v3_1.3.0.*.jar
-2444, antenna.preprocessor.v3_1.2.0.*.jar
-
-2027, org.hamcrest.core_1.1.0.*.jar
-3731, org.apache.lucene.spellchecker_2.9.1.*.jar
-3731, org.apache.lucene.spellchecker.source_2.9.1.*.jar
-4511, org.codehaus.jackson.smile.source_1.6.0.*.jar
-4511, org.codehaus.jackson.smile_1.6.0.*.jar
-4790, org.apache.commons.io.source_2.0.1.*.jar
-4402, org.slf4j.ext_1.6.1.*.jar
-3735, org.apache.solr.servlet_1.4.0.*.jar
-3735, org.apache.solr.servlet.source_1.4.0.*.jar
-3733, org.apache.solr.core_1.4.0.*.jar
-3733, org.apache.solr.core.source_1.4.0.*.jar
-3734, org.apache.solr.client.solrj_1.4.0.*.jar
-3734, org.apache.solr.client.solrj.source_1.4.0.*.jar
-1895, org.apache.commons.fileupload.source_1.2.0.*.jar
-3727, org.apache.lucene.memory_2.9.1.*.jar
-3727, org.apache.lucene.memory.source_2.9.1.*.jar
-4023, javax.xml.stream_1.0.1.*.jar
-2678, org.apache.commons.lang.source_2.4.0.*.jar
-3726, org.apache.lucene.highlighter_2.9.1.*.jar
-3726, org.apache.lucene.highlighter.source_2.9.1.*.jar
-3728, org.apache.lucene.misc_2.9.1.*.jar
-3730, org.apache.lucene.snowball_2.9.1.*.jar
-3730, org.apache.lucene.snowball.source_2.9.1.*.jar
-3729, org.apache.lucene.queries_2.9.1.*.jar
-3729, org.apache.lucene.queries.source_2.9.1.*.jar
-3734, org.apache.solr.client.solrj.embedded_1.4.0.*.jar
-245, javax.servlet_2.3.0.*.jar
-4893, org.apache.hadoop.zookeeper.source_3.3.2.*.jar
-4893, org.apache.hadoop.zookeeper_3.3.2.*.jar
-3732, org.apache.solr.common_1.4.0.*.jar
-3732, org.apache.solr.common.source_1.4.0.*.jar
-5084, org.apache.hadoop.zookeeper_3.3.3.*.jar
-5084, org.apache.hadoop.zookeeper.source_3.3.3.*.jar
-4314, org.quartz_1.8.3.*.jar
-3454, org.kohsuke.args4j_2.0.12.*.jar
-3454, org.kohsuke.args4j.source_2.0.12.*.jar
-4570, org.apache.hadoop.zookeeper.source_3.3.1.*.jar
-2845, org.codehaus.jackson.source_0.9.3.*.jar
-2845, org.codehaus.jackson_0.9.3.*.jar
-3712, com.google.gwt.servlet.source_2.0.3.*.jar
-3712, com.google.gwt.servlet_2.0.3.*.jar
-4307, com.google.gwt.servlet.source_2.0.4.*.jar
-4307, com.google.gwt.servlet_2.0.4.*.jar
-4641, com.google.gwt.servlet.source_2.1.0.*.jar
-4641, com.google.gwt.servlet_2.1.0.*.jar
-2683, com.sun.el_1.0.0.*.jar
-2683, com.sun.el.source_1.0.0.*.jar
-3670, javax.xml.bind_2.2.0.*.jar
-1981, javax.el_2.1.0.*.jar
-1981, javax.el.source_2.1.0.*.jar
-4511, org.codehaus.jackson.xc_1.6.0.*.jar
-4511, org.codehaus.jackson.xc.source_1.6.0.*.jar
-1980, javax.servlet.jsp.source_2.1.0.*.jar
-3766, org.apache.taglibs.standard.glassfish.source_1.2.0.*.jar
-4900, org.jboss.netty_3.2.4.*.jar
-
-1232, org.apache.ant_1.7.0.*/lib/*.jar
-
-4176, org.apache.commons.logging.source_1.1.1.*.jar
-2992, org.apache.commons.logging_1.0.4.*.jar
-4174, org.apache.commons.lang_2.4.0.*.jar
-1527, org.apache.commons.cli_1.0.0.*.jar
-3828, com.google.collect_1.0.0.*.jar
-3827, com.google.inject_2.0.0.*.jar
-1526, org.apache.commons.logging_1.0.4.*.jar
-4843, org.apache.commons.net_2.2.0.*.jar
-4843, org.apache.commons.net.source_2.2.0.*.jar
-232, org.apache.oro.source_2.0.8.*.jar
-1319, org.apache.commons.net.source_1.4.1.*.jar
-1319, org.apache.commons.net_1.4.1.*.jar
-
-5220, org.apache.commons.cli_1.2.0.*.jar
-5217, org.mozilla.javascript_1.6.6.*.jar
-2992, org.apache.commons.logging.source_1.0.4.*.jar
-2857, guice-1.0_patched.jar
-340, org.apache.xerces_2.7.0.*.jar
-230, org.apache.axis_1.2.1.*.jar
-1013, org.apache.ant_1.6.5.*.jar
-
-3006, com.sun.xml.bind_2.1.9.*.jar
-3728, org.apache.lucene.misc.source_2.9.1.*.jar
-3734, org.apache.solr.client.solrj.embedded.source_1.4.0.*.jar
-2677, org.apache.commons.io.source_1.4.0.*.jar
-
-3850, org.apache.derby.source_10.5.1.*.jar
-3850, org.apache.derby_10.5.1.*.jar
-
-3466, org.h2.source_1.1.117.*.jar
-3466, org.h2_1.1.117.*.jar
-4889, com.mongodb.source_2.4.0.*.jar
-4889, com.mongodb_2.4.0.*.jar
-
-5030, async-http-client-1.6.3.jar
-4635, archetype-common-2.0-alpha-4.jar
-4605, commons-collections-3.2.jar
-4606, commons-io-1.3.2.jar
-4607, commons-lang-2.1.jar
-4608, dom4j-1.6.1.jar
-4609, jchardet-1.0.jar
-4610, jdom-1.0.jar
-4611, oro-2.0.8.jar
-4613, plexus-velocity-1.1.3.jar
-4612, velocity-1.5.jar
-4648, indexer-artifact-3.1.0.jar
-4648, indexer-core-3.1.0.jar
-4645, lucene-core-2.4.1.jar
-4646, lucene-highlighter-2.4.1.jar
-5023, aether-api-1.11.jar
-5025, aether-connector-asynchttpclient-1.11.jar
-5029, aether-connector-wagon-1.11.jar
-5024, aether-impl-1.11.jar
-5026, aether-spi-1.11.jar
-5028, aether-util-1.11.jar
-4578, commons-cli-1.2.jar
-4935, guice-bean-binders-2.0.0.jar
-4928, guice-bean-converters-2.0.0.jar
-4916, guice-bean-inject-2.0.0.jar
-4922, guice-bean-locators-2.0.0.jar
-4914, guice-bean-reflect-2.0.0.jar
-4929, guice-bean-scanners-2.0.0.jar
-4930, guice-plexus-binders-2.0.0.jar
-4917, guice-plexus-converters-2.0.0.jar
-4920, guice-plexus-locators-2.0.0.jar
-4933, guice-plexus-metadata-2.0.0.jar
-4934, guice-plexus-scanners-2.0.0.jar
-4931, guice-plexus-shim-2.0.0.jar
-4598, javax.inject-1.jar
-4771, maven-aether-provider-3.0.2.jar
-4904, maven-artifact-3.0.2.jar
-4908, maven-compat-3.0.2.jar
-4903, maven-core-3.0.2.jar
-4942, maven-core-3.0.2.jar
-4902, maven-embedder-3.0.2.jar
-4905, maven-model-3.0.2.jar
-4910, maven-model-builder-3.0.2.jar
-4909, maven-plugin-api-3.0.2.jar
-4912, maven-repository-metadata-3.0.2.jar
-4906, maven-settings-3.0.2.jar
-4913, maven-settings-builder-3.0.2.jar
-4941, plexus-build-api-0.0.7.jar
-4600, plexus-cipher-1.4.jar
-4911, plexus-classworlds-2.4.jar
-4581, plexus-component-annotations-1.5.5.jar
-4583, plexus-interpolation-1.14.jar
-4601, plexus-sec-dispatcher-1.3.jar
-4919, plexus-utils-2.0.6.jar
-4924, sisu-guice-2.9.4-no_aop.jar
-5027, wagon-ahc-1.2.0.jar
-4927, wagon-file-1.0-beta-7.jar
-4925, wagon-provider-api-1.0-beta-6.jar
-4900, netty-3.2.4.Final.jar
-
-1960, org.mortbay.jetty.server_6.1.7.*.jar
-1960, org.mortbay.jetty.server.source_6.1.7.*.jar
-3005, com.sun.xml.bind_2.1.9.*.jar
-
-218, commons-cli-1.0.jar
-
-2343, net.sourceforge.lpg.lpgjavaruntime_1.1.0.*.jar
-
-2114, itext_1.5.4.*.jar
-1599, itextasian-1.5.2.*.jar
-2347, javax.wsdl_1.4.0.*.jar
-1374, javaxzombie.jar
-
-2688, org.apache.xml.security_1.4.2.*.jar
-2688, org.apache.xml.security.source_1.4.2.*.jar
-1148, org.apache.xerces.source_2.9.0.*.jar
-1985, org.apache.xalan.source_2.7.1.*.jar
-3521, com.google.gson.source_1.3.0.*.jar
-3521, com.google.gson_1.3.0.*.jar
-2975, org.w3c.xqts.testsuite_1.0.2.*.jar
-3450, org.jmock_1.2.0.*.jar
-219, commons-logging-1.0.4.*.jar
-238, log4j-1.2.8.*.jar
-328, wsdl4j-1.5.1.*.jar
-1026, wsdl4j-1.5.1.*.jar
-1380, wsdl4j-1.5.1.*.jar
-212, cactus-1.7.2.*.jar
-2366, commons-httpclient-2.0.2.*.jar
-296, junit-3.8.1.*.jar
-296, org.junit_3.8.1.*.jar
-30, xpp3_min-1.1.3.*.jar
-
-2166, org.w3c.css.sac.source_1.3.1.*.jar
-2166, org.w3c.css.sac_1.3.1.*.jar
-
-4511, org.codehaus.jackson.jaxrs.source_1.6.0.*.jar
-4511, org.codehaus.jackson.jaxrs_1.6.0.*.jar
-
-4512, javax.ws.rs.source_1.1.1.*.jar
-4512, javax.ws.rs_1.1.1.*.jar
-
-203, org.apache.axis.feature_1.2.1.*.jar
-203, org.apache.axis_1.2.1.*.jar
-202, org.apache.axis.feature_1.3.0.*.jar
-202, org.apache.axis_1.2.1.*.jar
-205, org.apache.axis.feature_1.3.0.*.jar
-205, org.apache.axis_1.2.1.*.jar
-207, org.apache.axis.feature_1.3.0.*.jar
-207, org.apache.axis_1.2.1.*.jar
-1022, org.apache.axis.feature_1.3.0.*.jar
-1022, org.apache.axis_1.3.0.*.jar
-
-212, org.apache.cactus_1.7.2.*.jar
-219, org.apache.commons_logging.feature_1.0.4.*.jar
-219, org.apache.commons_logging_1.0.4.*.jar
-
-330, org.apache.wsil4j.feature_1.0.0.*.jar
-340, org.apache.xerces.feature_2.7.0.*.jar
-321, org.uddi4j.feature_2.0.5.*.jar
-323, org.uddi4j_2.0.4.*.jar
-327, org.wsdl4j.feature_1.4.0.*.jar
-327, org.wsdl4j_1.4.0.*.jar
-
-3580, org.hamcrest.matchers_1.2_1.2.0.*.jar
-5258, org.xmlpull.v1_1.1.3.*.jar
-
-5123, javax.servlet-3.0.0.*.jar
-5125, javax.servlet.jsp-2.2.0.*.jar
-4710, javax.servlet.jsp_2.2.0.*.jar
-4710, javax.servlet.jsp.source_2.2.0.*.jar
-4711, jsp-impl-2.2.2.*.jar
-4711, org.mortbay.jetty.jsp-impl_2.2.2.*.jar
-
-#commons-logging.jar this is v1.1.1 - CQ 4832
-5251, com.springsource.javax.servlet.jsp.jstl-1.2.0.*.jar
-5095, com.springsource.org.apache.catalina-7.0.12.*.jar
-5095, com.springsource.org.apache.catalina.ha-7.0.12.*.jar
-5095, com.springsource.org.apache.catalina.tribes-7.0.12.*.jar
-5095, com.springsource.org.apache.coyote-7.0.12.*.jar
-5095, com.springsource.org.apache.el-7.0.12.*.jar
-5095, com.springsource.org.apache.jasper-7.0.12.*.jar
-5095, com.springsource.org.apache.juli.extras-7.0.12.*.jar
-4034, com.springsource.org.apache.sshd-0.3.0.*.jar
-4034, com.springsource.org.apache.sshd.core-0.5.0.*.jar
-5095, com.springsource.org.apache.tomcat.api-7.0.12.*.jar
-5095, com.springsource.org.apache.tomcat.util-7.0.12.*.jar
-
-#com.springsource.org.aspectj.runtime-1.6.6.*.jar <<< This is an Eclipse project rather than a 3rd party (except for the manifest which, as previously agreed with the IP team, is not relevant to a CQ)
-#com.springsource.org.aspectj.weaver-1.6.6.*.jar <<< This is an Eclipse project rather than a 3rd party (except for the manifest which, as previously agreed with the IP team, is not relevant to a CQ)
-#com.springsource.org.eclipse.jdt.core.compiler.batch-3.6.1.*.jar <<< This is an Eclipse project rather than a 3rd party (except for the manifest which, as previously agreed with the IP team, is not relevant to a CQ)
-
-4146, com.springsource.org.objectweb.asm-3.1.0.*.jar
-4146, com.springsource.org.objectweb.asm.commons-3.1.0.*.jar
-4146, com.springsource.org.objectweb.asm.tree-3.1.0.*.jar
-3991, com.springsource.slf4j.api-1.5.10.*.jar
-3989, com.springsource.slf4j.bridge-1.5.10.*.jar
-3990, com.springsource.slf4j.nop-1.5.10.*.jar
-3993, com.springsource.slf4j.org.apache.commons.logging-1.5.10.*.jar
-3992, com.springsource.slf4j.org.apache.log4j-1.5.10.*.jar
-
-#commons-codec.jar this is v1.3 covered by CQ 4025 and 3955. I have requested that CQ 4025 be withdrawn.
-#commons-httpclient.jar this is v3.1 covered by CQ 4030
-#ivy.jar this is v2.1.0 covered by CQ 3954
-
-5129, javax.annotation-1.1.0.*.jar
-5127, javax.el-2.2.0.*.jar
-
-#jets3t.jar - CQ 3958
-
-4395, jsch-0.1.42.*.jar
-4719, maven-plugin-api-3.0.jar
-5409, org.apache.felix.gogo.command-0.8.0.*.jar
-5409, org.apache.felix.gogo.command.source_0.8.0.*.jar
-5409, org.apache.felix.gogo.runtime-0.8.0.*.jar
-5409, org.apache.felix.gogo.runtime.source_0.8.0.*.jar
-5409, org.apache.felix.gogo.shell-0.8.0.*.jar
-5409, org.apache.felix.gogo.shell.source_0.8.0.*.jar
-4673, org.springframework.aop-3.0.5.*.jar
-4004, org.springframework.asm-3.0.5.*.jar
-4674, org.springframework.aspects-3.0.5.*.jar
-4675, org.springframework.beans-3.0.5.*.jar
-3953, org.springframework.build.aws.ivy.jar
-4676, org.springframework.context-3.0.5.*.jar
-4677, org.springframework.context.support-3.0.5.*.jar
-4678, org.springframework.core-3.0.5.*.jar
-4679, org.springframework.expression-3.0.5.*.jar
-4680, org.springframework.jdbc-3.0.5.*.jar
-4681, org.springframework.jms-3.0.5.*.jar
-4682, org.springframework.orm-3.0.5.*.jar
-4683, org.springframework.oxm-3.0.5.*.jar
-4684, org.springframework.transaction-3.0.5.*.jar
-4685, org.springframework.web-3.0.5.*.jar
-4686, org.springframework.web.portlet-3.0.5.*.jar
-4687, org.springframework.web.servlet-3.0.5.*.jar
-5412, org.springframework.aop-3.0.5.*.jar
-5413, org.springframework.beans-3.0.5.*.jar
-5414, org.springframework.context-3.0.5.*.jar
-5415, org.springframework.core-3.0.5.*.jar
-
-5086, com.springsource.org.apache.catalina.ha.springsource-6.0.32.*.jar
-5086, com.springsource.org.apache.catalina.springsource-6.0.32.*.jar
-5086, com.springsource.org.apache.catalina.tribes.springsource-6.0.32.*.jar
-4709, com.springsource.org.apache.commons.cli-1.2.0.*.jar
-5086, com.springsource.org.apache.coyote.springsource-6.0.32.*.jar
-5086, com.springsource.org.apache.el.springsource-6.0.32.*.jar
-5086, com.springsource.org.apache.jasper.springsource-6.0.32.*.jar
-5086, com.springsource.org.apache.juli.extras.springsource-6.0.32.*.jar
-
-# Experimental new entry form for JARs that belong to a project, but do not follow the standard pattern.
-rt.virgo, simple-host.jar
-rt.virgo, simple-snap.jar
-rt.virgo, spring-snap.jar
-rt.virgo, taglib-host.jar
-rt.virgo, taglib-snap-one.jar
-rt.virgo, taglib-snap-two.jar
-
-2664, com.sun.jaxb_2.1.6.*.jar
-2677, commons-io-1.4.jar
-4630, org.easymock_3.0.0.*.jar
-2617, xmlunit-1.2.jar
-
-4728, com.jcraft.jsch_0.1.44.*.jar
-4749, org.cyberneko.html_1.9.14.*.jar
-5068, org.dojotoolkit_1.6.1.*.jar
-4800, org.openid4java_0.9.5.*.jar
-
-3285, com.google.collect.source_1.0.0.*.jar
-3498, com.google.inject.source_2.0.0.*.jar
-3820, org.antlr.runtime.source_3.2.0.*.jar
-
-1839, org.apache.commons.io_1.3.2.*.jar
-
-5417, jsp-impl-2.1.3-b10.jar
-
-5804, com.google.guava_10.0.1.*.jar
-5816, com.google.inject_3.0.0.*.jar
-
-4759, org.apache.commons.math_2.1.0.*.jar
-5923, com.google.gson_2.1.0.*.jar
-5059, com.google.inject.assistedinject_3.0.0.*.jar
-5060, com.google.inject.multibindings_3.0.0.*.jar
-5908, com.ibm.wala.core_1.3.2.*.jar
-5909, com.ibm.wala.shrike_1.3.2.*.jar
-5511, com.sun.jersey.client_1.8.0.*.jar
-5512, com.sun.jersey.core_1.8.0.*.jar
-5511, com.sun.jersey.jersey-client_1.8.0.*.jar
-5512, com.sun.jersey.jersey-core_1.8.0.*.jar
-5912, net.sf.cglib_2.2.0.*.jar
-5902, org.apache.commons.lang3_3.1.0.*.jar
-4759, org.apache.commons.math.source_2.1.0.*.jar
-4759, org.apache.commons.math_2.1.0.*.jar
-5903, org.apache.commons.pool.source_1.4.0.*.jar
-5903, org.apache.commons.pool_1.4.0.*.jar
-4761, org.apache.commons.primitives_1.0.0.*.jar
-5907, org.apache.lucene_3.5.0.*.jar
-5965, org.jvnet.mimepull_1.5.0.*.jar
-3931, org.objenesis_1.0.0.*.jar
-3931, org.objenesis.source_1.0.0.*.jar
-4720, org.objectweb.asm.source_3.3.1.*.jar
-4720, org.objectweb.asm_3.3.1.*.jar
-3930, org.mockito.source_1.8.4.*.jar
-3930, org.mockito_1.8.4.*.jar
-1465, javax.mail_1.4.0.*.jar
-1208, javax.mail_1.4.0.*.jar
-135, javax.mail_1.4.0.*.jar
-5968, javax.servlet.source_3.0.0.*.jar
-1953, com.thoughtworks.qdox_1.6.3.*.jar
-134, javax.activation_1.1.0.*.jar
-1267, javax.activation_1.1.0.*.jar
-2860, org.hamcrest.generator_1.1.0.*.jar
-2860, org.hamcrest.integration.source_1.1.0.*.jar
-2860, org.hamcrest.integration_1.1.0.*.jar
-2860, org.hamcrest.library.source_1.1.0.*.jar
-2860, org.hamcrest.library_1.1.0.*.jar
-2860, org.hamcrest.text.source_1.1.0.*.jar
-2860, org.hamcrest.text_1.1.0.*.jar
-5969, javax.inject_1.0.0.*.jar
-2860, org.hamcrest_1.1.0.*.jar
-4839, org.apache.httpcomponents.httpclient_4.1.0.*.jar
-4713, org.apache.httpcomponents.httpcore_4.1.0.*.jar
-5092, org.apache.mina.core.source_2.0.2.*.jar
-5092, org.apache.mina.core_2.0.2.*.jar
-5091, org.apache.sshd.core.source_0.5.0.*.jar
-5091, org.apache.sshd.core_0.5.0.*.jar
-2027, org.junit4.source_4.4.0.*.jar
-2027, org.junit4_4.4.0.*.jar
-1308, javax.activation_1.1.0.*.jar
-1612, javax.activation_1.1.0.*.jar
-1723, javax.activation_1.1.0.*.jar
-1789, javax.activation_1.1.0.*.jar
-1802, javax.activation_1.1.0.*.jar
-2060, javax.activation_1.1.0.*.jar
-3932, javax.activation_1.1.0.*.jar
-5548, com.google.gwtjsonrpc_1.2.5.*.jar
-5926, org.apache.httpcomponents.httpclient_4.1.2.*.jar
-5925, org.apache.httpcomponents.httpcore_4.1.4.*.jar
-5559, org.jsoup_1.6.1.*.jar
-5928, org.swtchart_0.7.0.*.jar
-215, commons-discovery-0.2.jar
-216, commons-discovery-0.2.jar
-1031, commons-discovery-0.2.jar
-1377, commons-discovery-0.2.jar
-1474, commons-discovery-0.2.jar
-1636, commons-discovery-0.2.jar
-1775, commons-discovery-0.2.jar
-6408, org.apache.commons.cli_1.0.0.*.jar
-
-6428, org.apache.commons.fileupload_1.2.2.*.jar
-5737, org.apache.commons.io_1.3.2.*.jar
-1621, javax.resource.source_1.5.0.*.jar
-2884, commonj.sdo.source_2.1.1.*.jar
-5830, ch.qos.logback.core_1.0.0.*.jar
-5831, ch.qos.logback.classic_1.0.0.*.jar
-5831, ch.qos.logback.slf4j_1.0.0.*.jar
-5837, org.apache.hadoop.zookeeper_3.4.2.*.jar
-5838, org.apache.hadoop.zookeeper.tests_3.4.2.*.jar
-5063, org.quartz.source_1.8.3.*.jar
-5832, org.slf4j.api_1.6.4.*.jar
-5833, org.slf4j.ext_1.6.4.*.jar
-5834, org.slf4j.jcl_1.6.4.*.jar
-5835, org.slf4j.jul_1.6.4.*.jar
-5836, org.slf4j.log4j_1.6.4.*.jar
-3864, osgi.enterprise_4.2.0.*.jar
-
-6357, com.ning.async-http-client_1.6.5.*.jar
-6356, org.jboss.netty_3.2.5.*.jar
-
-6147, sshd-core_0.5.0.*.jar
-
-6045, aether-api-1.13.1.*.jar
-6046, aether-connector-asynchttpclient-1.13.1.*.jar
-6047, aether-connector-wagon-1.13.1.*.jar
-6048, aether-impl-1.13.1.*.jar
-6049, aether-spi-1.13.1.*.jar
-6050, aether-util-1.13.1.*.jar
-4720, asm-all-3.3.1.*.jar
-
-3673, com.sun.tools.xjc_2.2.0.*.jar
-6429, javax.ejb_3.1.0.*.jar
-3570, javax.validation_1.0.0.*.jar
-3670, javax.xml.bind.source_2.2.0.*.jar
-
-5804, com.google.guava.source_10.0.1.*.jar
-5058, com.google.inject.source_3.0.0.*.jar
-5294, com.jcraft.jsch.source_0.1.44.*.jar
-5030, com.ning.async-http-client_1.6.3.*.jar
-
-4728, com.jcraft.jsch.source_0.1.44.*.jar
-5888, ch.qos.logback.core.source_1.0.0.*.jar
-5889, ch.qos.logback.classic.source_1.0.0.*.jar
-5889, ch.qos.logback.slf4j.source_1.0.0.*.jar
-
-5890, org.slf4j.api.source_1.6.4.*.jar
-5833, org.slf4j.ext.source_1.6.4.*.jar
-5834, org.slf4j.jcl.source_1.6.4.*.jar
-5835, org.slf4j.jul.source_1.6.4.*.jar
-5836, org.slf4j.log4j.source_1.6.4.*.jar
-
-5567, ch.qos.logback.classic-0.9.28.*.jar
-5567, ch.qos.logback.classic_0.9.28.*.jar
-
-5539, org.apache.catalina-7.0.21.*.jar
-6288, org.apache.catalina-7.0.26.*.jar
-5539, org.apache.catalina.ha-7.0.21.*.jar
-6288, org.apache.catalina.ha-7.0.26.*.jar
-5539, org.apache.catalina.ha_7.0.21.*.jar
-6288, org.apache.catalina.ha_7.0.26.*.jar
-5539, org.apache.catalina.tribes-7.0.21.*.jar
-6288, org.apache.catalina.tribes-7.0.26.*.jar
-5539, org.apache.catalina.tribes_7.0.21.*.jar
-6288, org.apache.catalina.tribes_7.0.26.*.jar
-5539, org.apache.catalina_7.0.21.*.jar
-6288, org.apache.catalina_7.0.26.*.jar
-5539, org.apache.coyote-7.0.21.*.jar
-6288, org.apache.coyote-7.0.26.*.jar
-5539, org.apache.coyote_7.0.21.*.jar
-6288, org.apache.coyote_7.0.26.*.jar
-5539, org.apache.el-7.0.21.*.jar
-6288, org.apache.el-7.0.26.*.jar
-5539, org.apache.el_7.0.21.*.jar
-6288, org.apache.el_7.0.26.*.jar
-5539, org.apache.jasper-7.0.21.*.jar
-6288, org.apache.jasper-7.0.26.*.jar
-5539, org.apache.jasper_7.0.21.*.jar
-6288, org.apache.jasper_7.0.26.*.jar
-5539, org.apache.juli.extras-7.0.21.*.jar
-6288, org.apache.juli.extras-7.0.26.*.jar
-5539, org.apache.juli.extras_7.0.21.*.jar
-6288, org.apache.juli.extras_7.0.26.*.jar
-
-5539, org.apache.tomcat.api-7.0.21.*.jar
-6288, org.apache.tomcat.api-7.0.26.*.jar
-5539, org.apache.tomcat.api_7.0.21.*.jar
-6288, org.apache.tomcat.api_7.0.26.*.jar
-5539, org.apache.tomcat.util-7.0.21.*.jar
-6288, org.apache.tomcat.util-7.0.26.*.jar
-5539, org.apache.tomcat.util_7.0.21.*.jar
-6288, org.apache.tomcat.util_7.0.26.*.jar
-
-6073, org.apache.maven.plugin-api_3.0.4.*.jar
-1232, org.apache.tools.ant_1.7.0.*.jar
-
-1451, osgi.compendium_4.1.0.*.jar
-
-2070, org.apache.batik.swing_1.6.0.*.jar
-2070, org.w3c.dom.smil_1.0.0.*.jar
-
-4730, com.google.gson.source_1.6.0.*.jar
-5923, com.google.gson.source_2.1.0.*.jar
-5923, com.google.gson_2.1.0.*.jar
-5809, org.apache.commons.fileupload.source_1.2.2.*.jar
-4786, org.jdom.source_1.1.1.*.jar
-
-5275, com.naef.jnlua.linux64_0.9.1.*.jar
-5275, com.naef.jnlua.linux_0.9.1.*.jar
-5275, com.naef.jnlua.macosx_0.9.1.*.jar
-5275, com.naef.jnlua.windows64_0.9.1.*.jar
-5275, com.naef.jnlua.windows_0.9.1.*.jar
-5275, com.naef.jnlua_0.9.1.*.jar
-
-6495, org.apache.commons.pool_1.6.0.*.jar
-
-6400, com.google.gson.source_2.1.0.*.jar
-6518, com.google.guava_10.0.1.*.jar
-
-5831, ch.qos.logback.classic.source_1.0.0.*.jar
-5830, ch.qos.logback.core.source_1.0.0.*.jar
-5831, ch.qos.logback.slf4j.source_1.0.0.*.jar
-6428, org.apache.commons.fileupload.source_1.2.2.*.jar
-5837, org.apache.hadoop.zookeeper.source_3.4.2.*.jar
-5913, org.apache.lucene.analysis.source_3.5.0.*.jar
-5913, org.apache.lucene.analysis_3.5.0.*.jar
-5907, org.apache.lucene.core.source_3.5.0.*.jar
-5907, org.apache.lucene.core_3.5.0.*.jar
-5914, org.apache.lucene.grouping.source_3.5.0.*.jar
-5914, org.apache.lucene.grouping_3.5.0.*.jar
-5915, org.apache.lucene.highlighter.source_3.5.0.*.jar
-5915, org.apache.lucene.highlighter_3.5.0.*.jar
-5916, org.apache.lucene.memory.source_3.5.0.*.jar
-5916, org.apache.lucene.memory_3.5.0.*.jar
-5917, org.apache.lucene.misc.source_3.5.0.*.jar
-5917, org.apache.lucene.misc_3.5.0.*.jar
-5918, org.apache.lucene.queries.source_3.5.0.*.jar
-5918, org.apache.lucene.queries_3.5.0.*.jar
-5907, org.apache.lucene.source_3.5.0.*.jar
-5919, org.apache.lucene.spatial.source_3.5.0.*.jar
-5919, org.apache.lucene.spatial_3.5.0.*.jar
-5920, org.apache.lucene.spellchecker.source_3.5.0.*.jar
-5920, org.apache.lucene.spellchecker_3.5.0.*.jar
-5922, org.apache.solr.client.solrj.source_3.5.0.*.jar
-5922, org.apache.solr.client.solrj_3.5.0.*.jar
-5921, org.apache.solr.core.source_3.5.0.*.jar
-5921, org.apache.solr.core_3.5.0.*.jar
-6521, org.junit_4.10.0.*.jar
-5832, org.slf4j.api.source_1.6.4.*.jar
-5833, org.slf4j.ext.source_1.6.4.*.jar
-5834, org.slf4j.jcl.source_1.6.4.*.jar
-5835, org.slf4j.jul.source_1.6.4.*.jar
-5836, org.slf4j.log4j.source_1.6.4.*.jar
-
-4854, net.sourceforge.nattable.core_2.1.0.*.jar
-6203, org.apache.solr.core_3.5.0.*.jar
-
-6212, com.jcraft.jsch.source_0.1.46.*.jar
-6212, com.jcraft.jsch_0.1.46.*.jar
-6169, org.apache.ant.source_1.8.3.*.jar
-6169, org.apache.ant_1.8.3.*.jar
-5958, org.junit.source_4.10.0.*.jar
-
-230, org.apache.commons.net.source_1.4.1.*.jar
-6219, org.apache.commons.net.source_3.1.0.*.jar
-230, org.apache.commons.net_1.4.1.*.jar
-6219, org.apache.commons.net_3.1.0.*.jar
-
-org.apache.commons.lang_2.6.0.*.jar
-
-#Smack 3.1.100 is just version 3.1 with some Eclipse metadata
-3330, org.jivesoftware.smack.source_3.1.100.*.jar
-3330, org.jivesoftware.smack_3.1.100.*.jar
-
-6212, com.jcraft.jsch_0.1.46.*.jar
-6025, poi-3.7-*.jar
-6373, poi-ooxml-3.7-*.jar
-6373, poi-ooxml-schemas-3.7-*.jar
-
-4710, javax.servlet.jsp.glassfish.source_2.2.0.*.jar
-4710, javax.servlet.jsp.glassfish_2.2.0.*.jar
-
-2493, org.apache.batik.css_1.7.0.*.jar
-
-210, org.apache.batik_1.5.1.*.jar
-
-53, org.apache.muse.api_2.0.0.v200610270100.jar
-56, org.apache.muse.core_2.0.0.v200610270100.jar
-61, org.apache.muse.impl_2.0.0.v200610270100.jar
-67, org.apache.muse.osgi.axis2.binding_2.0.0.v200610270100.jar
-65, org.apache.muse.tools_2.0.0.v200611150100.jar
-66, org.apache.muse.utils_2.0.0.v200610270100.jar
-307, org.opengroup.arm_4.0.0.*.jar
-
-305, org.mx4j.jmx_3.0.100.*.jar
-org.mx4j.jmx_3.0.2.*.jar
-org.mx4j.jmx_3.0.3.*.jar
-org.mx4j.jmx_3.0.4.*.jar
-org.mx4j.jmx_4.3.0.*.jar
-
-6501, org.sonatype.m2e.mavenarchiver.feature_0.15.0.*.jar
-6501, org.sonatype.m2e.mavenarchiver_0.15.0.*.jar
-
-6779, com.ibm.icu.base_4.0.1.*.jar
-5963, jena-core-2.7.1.*.jar
-6575, jena-iri-0.9.2.*.jar
-6583, org.apache.xerces_2.8.0.*.jar
-6782, org.slf4j.api_1.6.4.*.jar
-6733, wink-client-1.2.1-incubating.jar
-6733, wink-client-apache-httpclient-1.2.1-incubating.jar
-6733, wink-common-1.2.1-incubating.jar
-6733, wink-json4j-1.2.1-incubating.jar
-6733, wink-json4j-provider-1.2.1-incubating.jar
-6733, wink-server-1.2.1-incubating.jar
-
-6200, org.apache.lucene.misc_3.5.0.*.jar
-
-5774, activation-1.1.1.jar
-5569, annotation-indexer-1.2.jar
-5621, ant-1.8.2.jar
-5621, ant-launcher-1.8.2.jar
-6754, antlr-runtime-3.4.jar
-5772, aopalliance-1.0.jar
-5570, args4j-2.0.16.jar
-5572, asm-all-2.2.3.jar
-5599, commons-beanutils-1.8.0.jar
-5601, commons-codec-1.4.jar
-5602, commons-collections-3.2.jar
-5603, commons-digester-1.7.jar
-6141, commons-digester3-3.0.jar
-5604, commons-discovery-0.4.jar
-5605, commons-fileupload-1.2.1.jar
-6105, commons-io-2.0.1.jar
-6763, commons-jelly-1.1-hudson-20120704.jar
-6188, commons-jelly-tags-define-1.0.1-hudson-20071021.jar
-5682, commons-jelly-tags-fmt-1.0.jar
-6764, commons-jelly-tags-xml-1.1-hudson-20120704.jar
-6790, commons-jexl-1.1-hudson-20090508.jar
-5684, commons-jexl-2.0.1.jar
-5609, commons-lang-2.4.jar
-6116, commons-lang3-3.0.1.jar
-6108, dom4j-1.6.1-hudson-3.jar
-5686, ezmorph-1.0.6.jar
-5687, gossip-bootstrap-1.7.jar
-5688, gossip-support-1.7.jar
-6109, guava-10.0.1.jar
-5564, jcl-over-slf4j-1.6.1.jar
-5728, jmdns-3.4.0.jar
-5730, jna-posix-1.0.3.jar
-6129, json-lib-2.4-jdk15.jar
-5732, jstl-1.1.0.jar
-6191, jtidy-4aug2000r7-dev.jar
-5767, localizer-1.10.jar
-5563, log4j-over-slf4j-1.6.1.jar
-5693, mail-1.4.4.jar
-6753, serializer-2.7.1.jar
-5694, servlet-api-2.4.jar
-5733, sezpoz-1.9.jar
-6207, sisu-guice-3.0.3-no_aop.jar
-6208, sisu-inject-bean-2.2.3.jar
-5563, slf4j-api-1.6.1.jar
-5565, slf4j-jdk14-1.6.1.jar
-5755, spring-aop-2.5.6.jar
-5754, spring-beans-2.5.6.jar
-6114, spring-context-2.5.6.jar
-5753, spring-core-2.5.6.jar
-5820, spring-dao-2.0.8.jar
-5760, spring-jdbc-2.5.6.jar
-6761, spring-ldap-1.3.1.RELEASE-all.jar
-5822, spring-security-acl-2.0.7.RELEASE.jar
-5822, spring-security-core-2.0.7.RELEASE.jar
-5756, spring-support-2.0.8.jar
-5757, spring-tx-2.5.6.jar
-5758, spring-web-2.5.6.jar
-6759, stringtemplate-3.2.1.jar
-5769, task-reactor-1.2.jar
-6215, tiger-types-1.3.jar
-6753, xalan-2.7.1.jar
-6752, xercesImpl-2.8.1.jar
-6766, xml-apis-1.3.03.jar
-6470, xmlpull-1.1.3.4d_b4_min.jar
-6829, xpath-service-1.0.2.jar
-6229, xpp3-1.1.4c.jar
-5771, xstream-1.4.1-hudson-2.jar
-
-4325, javax.xml.rpc-1.1.0.*.jar
-4325, javax.xml.rpc_1.1.0.*.jar
-
-6633, org.apache.catalina-7.0.29.*.jar
-6633, org.apache.catalina.ha-7.0.29.*.jar
-6633, org.apache.catalina.ha_7.0.29.*.jar
-6633, org.apache.catalina.tribes-7.0.29.*.jar
-6633, org.apache.catalina.tribes_7.0.29.*.jar
-6633, org.apache.catalina_7.0.29.*.jar
-6633, org.apache.coyote-7.0.29.*.jar
-6633, org.apache.coyote_7.0.29.*.jar
-6633, org.apache.el-7.0.29.*.jar
-6633, org.apache.el_7.0.29.*.jar
-6633, org.apache.jasper-7.0.29.*.jar
-6633, org.apache.jasper_7.0.29.*.jar
-6633, org.apache.juli.extras-7.0.29.*.jar
-6633, org.apache.juli.extras_7.0.29.*.jar
-6633, org.apache.tomcat.api-7.0.29.*.jar
-6633, org.apache.tomcat.api_7.0.29.*.jar
-6633, org.apache.tomcat.util-7.0.29.*.jar
-6633, org.apache.tomcat.util_7.0.29.*.jar
-
-6626, org.apache.catalina-7.0.32.*.jar
-6626, org.apache.catalina.ha-7.0.32.*.jar
-6626, org.apache.catalina.ha_7.0.32.*.jar
-6826, org.apache.catalina.tribes-7.0.32.*.jar
-6826, org.apache.catalina.tribes_7.0.32.*.jar
-6826, org.apache.catalina_7.0.32.*.jar
-6826, org.apache.coyote-7.0.32.*.jar
-6826, org.apache.coyote_7.0.32.*.jar
-6826, org.apache.el-7.0.32.*.jar
-6826, org.apache.el_7.0.32.*.jar
-6826, org.apache.jasper-7.0.32.*.jar
-6826, org.apache.jasper_7.0.32.*.jar
-6826, org.apache.juli.extras-7.0.32.*.jar
-6826, org.apache.juli.extras_7.0.32.*.jar
-6826, org.apache.tomcat.api-7.0.32.*.jar
-6826, org.apache.tomcat.api_7.0.32.*.jar
-6826, org.apache.tomcat.util-7.0.32.*.jar
-6826, org.apache.tomcat.util_7.0.32.*.jar
-6826, org.apache.catalina.ha-7.0.32.*.jar
-6826, org.apache.catalina.ha_7.0.32.*.jar
-
-6642, org.slf4j.nop-1.6.4.*.jar
-6642, org.slf4j.nop_1.6.4.*.jar
-
-6092, cdi.api_1.0.0.*.jar
-6509, ch.qos.logback.classic_1.0.3.*.jar
-6510, ch.qos.logback.core_1.0.3.*.jar
-6527, com.springsource.ch.qos.logback.core-0.9.28.*.jar
-6527, com.springsource.ch.qos.logback.core_0.9.28.*.jar
-4462, javassist_3.13.0.*.jar
-3944, javax.ejb-3.0.0.*.jar
-3944, javax.ejb_3.0.0.*.jar
-5251, javax.servlet.jsp.jstl.impl_1.2.0.*.jar
-
-6246, javax.servlet_3.0.jar
-6159, org.apache.bval_0.3.0.*.jar
-6227, org.apache.commons.beanutils_1.8.0.*.jar
-6101, org.apache.commons.dbcp_1.4.0.*.jar
-6183, org.apache.commons.lang_2.6.0.*.jar
-6842, org.apache.derby_10.8.2.*.jar
-6402, org.apache.felix.gogo.command_0.10.0.*.jar
-6402, org.apache.felix.gogo.runtime_0.10.0.*.jar
-6402, org.apache.felix.gogo.shell_0.10.0.*.jar
-6221, org.apache.geronimo.components.connector_3.1.1.*.jar
-6222, org.apache.geronimo.components.transaction_3.1.1.*.jar
-6163, org.apache.geronimo.specs.j2ee.management_1.0.0.*.jar
-6223, org.apache.geronimo.specs.osgi.locator_1.1.0.*.jar
-6224, org.apache.geronimo.specs.osgi.registry_1.1.0.*.jar
-6087, org.apache.openejb.api_4.0.0.*.jar
-6087, org.apache.openejb.core_4.0.0.*.jar
-6087, org.apache.openejb.javaagent_4.0.0.*.jar
-6087, org.apache.openejb.jee_4.0.0.*.jar
-6087, org.apache.openejb.loader_4.0.0.*.jar
-6089, org.apache.openwebbeans.ee.common_1.1.3.*.jar
-6089, org.apache.openwebbeans.ee_1.1.3.*.jar
-6089, org.apache.openwebbeans.ejb_1.1.3.*.jar
-6089, org.apache.openwebbeans.impl_1.1.3.*.jar
-6089, org.apache.openwebbeans.jsf_1.1.3.*.jar
-6089, org.apache.openwebbeans.spi_1.1.3.*.jar
-6089, org.apache.openwebbeans.tomcat7_1.1.3.*.jar
-6089, org.apache.openwebbeans.web_1.1.3.*.jar
-6157, org.apache.xbean.asm_3.9.0.*.jar
-6157, org.apache.xbean.bundleutils_3.9.0.*.jar
-6157, org.apache.xbean.finder_3.9.0.*.jar
-6157, org.apache.xbean.naming_3.9.0.*.jar
-6157, org.apache.xbean.reflect_3.9.0.*.jar
-6189, org.glassfish.com.sun.faces_2.1.6.*.jar
-6189, org.glassfish.javax.faces_2.1.6.*.jar
-5475, org.jolokia.osgi_1.0.2.*.jar
-5422, org.osgi.core-4.3.0.*.jar
-3948, org.osgi.enterprise_4.2.0.*.jar
-6100, org.ow2.jotm.jotm-core_2.1.9.*.jar
-4185, org.quartz_1.6.0.*.jar
-6009, org.springframework.aop-3.1.0.*.jar
-6009, org.springframework.aop_3.1.0.*.jar
-org.springframework.asm-3.1.0.*.jar
-org.springframework.asm_3.1.0.*.jar
-6011, org.springframework.aspects-3.0.0.*.jar
-6011, org.springframework.aspects-3.1.0.*.jar
-6011, org.springframework.aspects_3.1.0.*.jar
-6012, org.springframework.beans-3.1.0.*.jar
-6012, org.springframework.beans_3.1.0.*.jar
-6013, org.springframework.context-3.1.0.*.jar
-6013, org.springframework.context.support-3.1.0.*.jar
-6013, org.springframework.context.support_3.1.0.*.jar
-6013, org.springframework.context_3.1.0.*.jar
-6015, org.springframework.core-3.1.0.*.jar
-6015, org.springframework.core_3.1.0.*.jar
-6016, org.springframework.expression-3.1.0.*.jar
-6016, org.springframework.expression_3.1.0.*.jar
-6017, org.springframework.jdbc-3.1.0.*.jar
-6017, org.springframework.jdbc_3.1.0.*.jar
-6018, org.springframework.jms-3.1.0.*.jar
-6018, org.springframework.jms_3.1.0.*.jar
-6019, org.springframework.orm-3.1.0.*.jar
-6019, org.springframework.orm_3.1.0.*.jar
-6020, org.springframework.oxm-3.1.0.*.jar
-6020, org.springframework.oxm_3.1.0.*.jar
-6021, org.springframework.transaction-3.1.0.*.jar
-6021, org.springframework.transaction_3.1.0.*.jar
-6022, org.springframework.web-3.1.0.*.jar
-6023, org.springframework.web.portlet-3.1.0.*.jar
-6023, org.springframework.web.portlet_3.1.0.*.jar
-6024, org.springframework.web.servlet-3.1.0.*.jar
-6024, org.springframework.web.servlet_3.1.0.*.jar
-6022, org.springframework.web_3.1.0.*.jar
-5422, osgi.core_4.3.0.*.jar
-6158, scannotation_1.0.2.*.jar
-
-6093, javax.ejb-3.1.1.*.jar
-6093, javax.ejb_3.1.1.*.jar
-6107, javax.resource_1.6.0.*.jar
-6145, javax.security.jacc_1.4.0.*.jar
-1937, org.springframework.asm-3.1.0.*.jar
-1937, org.springframework.asm_3.1.0.*.jar
-
-6051, guice-bean-binders-2.3.0.*.jar
-6052, guice-bean-converters-2.3.0.*.jar
-6053, guice-bean-inject-2.3.0.*.jar
-6054, guice-bean-locators-2.3.0.*.jar
-6055, guice-bean-reflect-2.3.0.*.jar
-6056, guice-bean-scanners-2.3.0.*.jar
-6057, guice-plexus-binders-2.3.0.*.jar
-6058, guice-plexus-converters-2.3.0.*.jar
-6059, guice-plexus-lifecycles-2.3.0.*.jar
-6060, guice-plexus-locators-2.3.0.*.jar
-6061, guice-plexus-metadata-2.3.0.*.jar
-6062, guice-plexus-scanners-2.3.0.*.jar
-6063, guice-plexus-shim-2.3.0.*.jar
-6066, maven-aether-provider-3.0.4.*.jar
-6067, maven-artifact-3.0.4.*.jar
-6068, maven-compat-3.0.4.*.jar
-6069, maven-core-3.0.4.*.jar
-6070, maven-embedder-3.0.4.*.jar
-6071, maven-model-3.0.4.*.jar
-6072, maven-model-builder-3.0.4.*.jar
-6073, maven-plugin-api-3.0.4.*.jar
-6074, maven-repository-metadata-3.0.4.*.jar
-6075, maven-settings-3.0.4.*.jar
-6076, maven-settings-builder-3.0.4.*.jar
-5646, plexus-cipher-1.7.jar
-5659, wagon-ahc-1.2.1.*.jar
-6079, wagon-file-2.2.jar
-6080, wagon-provider-api-2.2.jar
-
-6065, sisu-guice-3.1.0-no_aop.jar
-
-2863, org.apache.log4j_1.2.13.*.jar
-2860, org.hamcrest.core.source_1.1.0.*.jar
-2860, org.hamcrest.core_1.1.0.*.jar
-2860, org.hamcrest.integration.source_1.1.0.*.jar
-2860, org.hamcrest.integration_1.1.0.*.jar
-2860, org.hamcrest.library.source_1.1.0.*.jar
-2860, org.hamcrest.library_1.1.0.*.jar
-2860, org.hamcrest.text.source_1.1.0.*.jar
-2860, org.hamcrest.text_1.1.0.*.jar
-2860, org.hamcrest_1.1.0.*.jar
-
-2746, backport-util-concurrent-2.2-sources.jar
-6512, boilerpipe-1.2.0.*.jar
-5584, jempbox-1.6.0.*.jar
-7014, metadata-extractor-2.4.0-beta-1.jar
-7005, org.apache.commons.compress.source_1.4.1.*.jar
-7005, org.apache.commons.compress_1.4.1.*.jar
-2690, org.apache.commons.pool.source_1.3.0.*.jar
-6924, org.apache.hadoop.zookeeper.source_3.4.5.*.jar
-6924, org.apache.hadoop.zookeeper_3.4.5.*.jar
-5926, org.apache.httpcomponents.httpclient.source_4.1.2.*.jar
-2750, org.apache.httpcomponents.httpcore.source_4.0.0.*.jar
-5925, org.apache.httpcomponents.httpcore.source_4.1.4.*.jar
-3101, org.ccil.cowan.tagsoup_1.2.0.*.jar
-2617, org.custommonkey.xmlunit_1.2.0.*.jar
-7010, org.dom4j_1.6.1.*.jar
-7006, poi-3.9-20121203.jar
-7008, poi-ooxml-3.9-20121203.jar
-7009, poi-ooxml-schemas-3.9-20121203.jar
-7007, poi-scratchpad-3.9-20121203.jar
-3274, rome-1.0-sources.jar
-3275, rome-fetcher-1.0-sources.jar
-5802, slf4j-api-1.6.2.*.jar
-5803, slf4j-log4j12-1.6.2.*.jar
-6953, tika-core-1.2-sources.jar
-6953, tika-core-1.2.jar
-6954, tika-parsers-1.2-sources.jar
-6954, tika-parsers-1.2.jar
-7011, xz-1.1.jar
-
-6837, de.cau.cs.kieler.kiml.gmf.feature.source_0.7.1.*.jar
-6837, de.cau.cs.kieler.kiml.gmf.feature_0.7.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphiti.feature.source_0.7.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphiti.feature_0.7.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphviz.feature.source_0.7.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphviz.feature_0.7.1.*.jar
-6837, de.cau.cs.kieler.kiml.ui.source_0.7.1.*.jar
-6837, de.cau.cs.kieler.kiml.ui_0.7.1.*.jar
-6837, de.cau.cs.kieler.core.kgraph.source_0.4.1.*.jar
-6837, de.cau.cs.kieler.core.kgraph_0.4.1.*.jar
-6837, de.cau.cs.kieler.core.source_0.8.0.*.jar
-6837, de.cau.cs.kieler.core_0.8.0.*.jar
-6837, de.cau.cs.kieler.kiml.gmf.source_0.5.1.*.jar
-6837, de.cau.cs.kieler.kiml.gmf_0.5.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphiti.source_0.3.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphiti_0.3.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphviz.dot.source_0.6.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphviz.dot_0.6.1.*.jar
-6837, de.cau.cs.kieler.kiml.graphviz.layouter.source_0.6.2.*.jar
-6837, de.cau.cs.kieler.kiml.graphviz.layouter_0.6.2.*.jar
-6837, de.cau.cs.kieler.kiml.service.source_0.3.0.*.jar
-6837, de.cau.cs.kieler.kiml.service_0.3.0.*.jar
-6837, de.cau.cs.kieler.kiml.source_0.11.1.*.jar
-6837, de.cau.cs.kieler.kiml_0.11.1.*.jar
-6837, de.cau.cs.kieler.klay.force.source_0.1.1.*.jar
-6837, de.cau.cs.kieler.klay.force_0.1.1.*.jar
-6837, de.cau.cs.kieler.klay.layered.source_0.3.1.*.jar
-6837, de.cau.cs.kieler.klay.layered_0.3.1.*.jar
-
-
-6450, org.apache.commons.lang_2.6.0.*.jar
-
-#Gyrex
-6861, ch.qos.logback.classic.source_1.0.7.*.jar
-6861, ch.qos.logback.classic_1.0.7.*.jar
-6860, ch.qos.logback.core.source_1.0.7.*.jar
-6860, ch.qos.logback.core_1.0.7.*.jar
-
-ch.qos.logback.slf4j.source_1.0.7.*.jar
-
-ch.qos.logback.slf4j_1.0.7.*.jar
-
-6876, com.ibm.icu.base.source_50.1.0.*.jar
-6876, com.ibm.icu.base_50.1.0.*.jar
-6876, com.ibm.icu_50.1.0.*.jar
-7021, com.sun.jersey.source_1.17.0.*.jar
-7021, com.sun.jersey_1.17.0.*.jar
-6107, javax.resource.source_1.6.0.*.jar
-1613, javax.transaction.source_1.1.0.*.jar
-4968, org.apache.commons.beanutils.source_1.8.0.*.jar
-5601, org.apache.commons.codec.source_1.4.0.*.jar
-5601, org.apache.commons.codec_1.4.0.*.jar
-6183, org.apache.commons.lang.source_2.6.0.*.jar
-6402, org.apache.felix.gogo.command.source_0.10.0.*.jar
-6402, org.apache.felix.gogo.runtime.source_0.10.0.*.jar
-6402, org.apache.felix.gogo.shell.source_0.10.0.*.jar
-7096, org.apache.sshd.core.source_0.7.0.*.jar
-7096, org.apache.sshd.core_0.7.0.*.jar
-
-org.hamcrest.core_1.3.0.*.jar
-org.junit_4.11.0.*.jar
-
-6813, org.kohsuke.args4j.source_2.0.21.*.jar
-6813, org.kohsuke.args4j_2.0.21.*.jar
-
-7049, org.sat4j.core_2.3.3.*.jar
-7049, org.sat4j.pb_2.3.3.*.jar
-6855, org.slf4j.api.source_1.7.2.*.jar
-6855, org.slf4j.api_1.7.2.*.jar
-6856, org.slf4j.ext.source_1.7.2.*.jar
-6856, org.slf4j.ext_1.7.2.*.jar
-6857, org.slf4j.jcl.source_1.7.2.*.jar
-6857, org.slf4j.jcl_1.7.2.*.jar
-6858, org.slf4j.jul.source_1.7.2.*.jar
-6858, org.slf4j.jul_1.7.2.*.jar
-6859, org.slf4j.log4j.source_1.7.2.*.jar
-6859, org.slf4j.log4j_1.7.2.*.jar
-
-
-ch.qos.logback.slf4j_1.0.7.*.jar
-com.springsource.org.aspectj.weaver-1.6.12.*.jar
-com.springsource.org.aspectj.weaver-1.6.6.*.jar
-com.springsource.org.aspectj.weaver_1.6.12.*.jar
-com.springsource.org.eclipse.jdt.core.compiler.batch-3.6.1.*.jar
-com.springsource.org.eclipse.jdt.core.compiler.batch_3.6.1.*.jar
-4191, com.springsource.org.h2-1.0.71.*.jar
-7150, javassist_3.17.1.*.jar
-7146, org.apache.bval_0.5.0.*.jar
-7024, org.apache.catalina.ha_7.0.35.*.jar
-7024, org.apache.catalina.tribes_7.0.35.*.jar
-7024, org.apache.catalina_7.0.35.*.jar
-7151, org.apache.commons.lang_3.1.0.*.jar
-7024, org.apache.coyote_7.0.35.*.jar
-7024, org.apache.el_7.0.35.*.jar
-7024, org.apache.jasper_7.0.35.*.jar
-7024, org.apache.juli.extras_7.0.35.*.jar
-7162, org.apache.openejb.api_4.5.2.*.jar
-7162, org.apache.openejb.core_4.5.2.*.jar
-7162, org.apache.openejb.javaagent_4.5.2.*.jar
-7162, org.apache.openejb.jee_4.5.2.*.jar
-7162, org.apache.openejb.jpa-integration_4.5.2.*.jar
-7162, org.apache.openejb.loader_4.5.2.*.jar
-7145, org.apache.openwebbeans.ee.common_1.1.7.*.jar
-7145, org.apache.openwebbeans.ee_1.1.7.*.jar
-7145, org.apache.openwebbeans.ejb_1.1.7.*.jar
-7145, org.apache.openwebbeans.impl_1.1.7.*.jar
-7145, org.apache.openwebbeans.jsf_1.1.7.*.jar
-7145, org.apache.openwebbeans.spi_1.1.7.*.jar
-7145, org.apache.openwebbeans.tomcat7_1.1.7.*.jar
-7145, org.apache.openwebbeans.web_1.1.7.*.jar
-7024, org.apache.tomcat.api_7.0.35.*.jar
-7024, org.apache.tomcat.util_7.0.35.*.jar
-7149, org.apache.xbean.asm_3.12.0.*.jar
-7149, org.apache.xbean.bundleutils_3.12.0.*.jar
-7149, org.apache.xbean.finder_3.12.0.*.jar
-7149, org.apache.xbean.naming_3.12.0.*.jar
-7149, org.apache.xbean.reflect_3.12.0.*.jar
-7147, org.glassfish.com.sun.faces_2.1.18.*.jar
-7147, org.glassfish.javax.faces_2.1.18.*.jar
-6827, org.slf4j.nop_1.7.2.*.jar
-
-7060, com.google.guava.source_11.0.2.*.jar
-7060, com.google.guava_11.0.2.*.jar
-
-6861, ch.qos.logback.slf4j.source_1.0.7.*.jar
-6861, ch.qos.logback.slf4j_1.0.7.*.jar
-
-7067, org.hamcrest.core_1.3.0.*.jar
-7066, org.junit_4.11.0.*.jar
-
-5372, backport-util-concurrent-3.1-eclipse01.jar
-5372, backport-util-concurrent-3.1.jar
-7163, com.ibm.icu_50.1.1.*.jar
-131, commons-codec-1.3.jar
-1917, commons-digester-1.8.jar
-100, commons-el-1.0.jar
-5343, geronimo-ejb_2.1_spec-1.1.jar
-5343, geronimo-ejb_2.1_spec.jar
-1614, geronimo-jms_1.1_spec.jar
-5363, htmlcleaner-2.1.jar
-7135, icefaces-1.8.2-r33557.jar
-5369, icefaces-1.8.2.*.jar
-5561, icefaces-comps-1.8.2-r33557.jar
-5370, icepdf-core-4.3.2.*.jar
-6296, jcr-vfs-2.4.0.*.jar
-5354, myfaces-api-1.1.5.*.jar
-5355, myfaces-impl-1.1.5.*.jar
-217, commons-el-1.0.jar
-1621, geronimo-j2ee-connector_1.5_spec.jar
-5389, spring-web-3.0.5.*.jar
-
-6547, com.google.guava_12.0.0.*.jar
-
-5561, icefaces-comps-1.8.2.*.jar
-7017, icefaces-facelets-1.8.2.*.jar
-5390, spring-webmvc-3.0.5.*.jar
-5316, commons-codec-1.3-eclipse01.jar
-5333, commons-collections-3.2-eclipse01.jar
-5319, commons-el-1.0-eclipse01.jar
-6666, commons-lang-2.4-eclipse01.jar
-5561, icefaces-comps-1.8.2-eclipse01.jar
-7017, icefaces-facelets-1.8.2-r33557-eclipse01.jar
-6142, jai_imageio-1.1-eclipse01.jar
-6142, jai_imageio-infinity01-1.1.jar
-
-5258, xmlpull-1.1.3.*.jar
-
-3820, org.antlr.runtime.source_3.2.0.*.jar
-5260, unit-api-0.6.1.*.jar
-
-6810, javaewah_0.5.6.*.jar
-6258, org.apache.commons.compress_1.3.0.*.jar
-6258, org.apache.commons.compress.source_1.3.0.*.jar
-
-4641, com.google.gwt.user.source_2.1.0.*.jar
-4641, com.google.gwt.user_2.1.0.*.jar
-4876, com.google.protobuf.source_2.4.0.*.jar
-4876, com.google.protobuf_2.4.0.*.jar
-6218, com.jcraft.jzlib.source_1.1.1.*.jar
-6218, com.jcraft.jzlib_1.1.1.*.jar
-6481, com.sun.jersey.source_1.12.0.*.jar
-6481, com.sun.jersey_1.12.0.*.jar
-6833, com.thoughtworks.selenium.source_2.25.0.*.jar
-6833, com.thoughtworks.selenium_2.25.0.*.jar
-4260, com.thoughtworks.xstream.source_1.3.1.*.jar
-4260, com.thoughtworks.xstream_1.3.1.*.jar
-5046, com.vaadin_6.5.3.*.jar
-2882, edu.emory.mathcs.backport.source_3.1.0.*.jar
-2882, edu.emory.mathcs.backport_3.1.0.*.jar
-5418, javax.servlet.jsp.jstl.impl.source_1.2.0.*.jar
-5418, javax.servlet.jsp.jstl.impl_1.2.0.*.jar
-247, javax.servlet.jsp.source_1.2.0.*.jar
-247, javax.servlet.jsp_1.2.0.*.jar
-1378, javax.xml.rpc_1.1.0.*.jar
-3450, jmock-core-1.2.0.*.jar
-4563, me.prettyprint.hector.source_0.7.0.*.jar
-4563, me.prettyprint.hector_0.7.0.*.jar
-3593, net.miginfocom.layout.source_3.7.1.*.jar
-3593, net.miginfocom.layout.swing.source_3.7.1.*.jar
-3593, net.miginfocom.layout.swing_3.7.1.*.jar
-3593, net.miginfocom.layout.swt.source_3.7.1.*.jar
-3593, net.miginfocom.layout.swt_3.7.1.*.jar
-3593, net.miginfocom.layout_3.7.1.*.jar
-305, net.sourceforge.mx4j.remote_3.0.1.*.jar
-305, net.sourceforge.mx4j_3.0.1.*.jar
-6590, org.apache.ant.source_1.8.4.*.jar
-6590, org.apache.ant_1.8.4.*.jar
-2497, org.apache.batik.bridge_1.7.0.*.jar
-2482, org.apache.batik.dom.svg_1.7.0.*.jar
-2487, org.apache.batik.dom_1.7.0.*.jar
-2478, org.apache.batik.ext.awt_1.7.0.*.jar
-208, org.apache.batik.extension.source_1.6.0.*.jar
-2488, org.apache.batik.extension.source_1.7.0.*.jar
-208, org.apache.batik.extension_1.6.0.*.jar
-2488, org.apache.batik.extension_1.7.0.*.jar
-2486, org.apache.batik.parser_1.7.0.*.jar
-2482, org.apache.batik.svggen_1.7.0.*.jar
-2484, org.apache.batik.swing.source_1.7.0.*.jar
-2484, org.apache.batik.swing_1.7.0.*.jar
-2481, org.apache.batik.transcoder_1.7.0.*.jar
-2491, org.apache.batik.xml_1.7.0.*.jar
-4564, org.apache.cassandra.source_0.7.0.*.jar
-4564, org.apache.cassandra_0.7.0.*.jar
-4887, org.apache.commons.daemon.source_1.0.5.*.jar
-4887, org.apache.commons.daemon_1.0.5.*.jar
-6553, org.apache.commons.exec.source_1.1.0.*.jar
-6553, org.apache.commons.exec_1.1.0.*.jar
-6549, org.apache.httpcomponents.httpclient.source_4.1.3.*.jar
-6549, org.apache.httpcomponents.httpclient_4.1.3.*.jar
-2739, org.apache.httpcomponents.httpcore.nio.source_4.0.0.*.jar
-4713, org.apache.httpcomponents.httpcore.nio.source_4.1.0.*.jar
-2739, org.apache.httpcomponents.httpcore.nio_4.0.0.*.jar
-4713, org.apache.httpcomponents.httpcore.nio_4.1.0.*.jar
-5047, org.apache.lucene.core.source_3.0.3.*.jar
-5047, org.apache.lucene.core_3.0.3.*.jar
-5048, org.apache.lucene.highlighter.source_3.0.3.*.jar
-5048, org.apache.lucene.highlighter_3.0.3.*.jar
-5781, org.apache.lucene.memory.source_3.0.3.*.jar
-5781, org.apache.lucene.memory_3.0.3.*.jar
-5049, org.apache.lucene.queries.source_3.0.3.*.jar
-5049, org.apache.lucene.queries_3.0.3.*.jar
-4818, org.apache.thrift.source_0.5.0.*.jar
-4818, org.apache.thrift_0.5.0.*.jar
-2688, org.apache.xml.security_1.4.2.*.jar
-4817, org.cliffc.high_scale_lib.source_1.1.2.*.jar
-4817, org.cliffc.high_scale_lib_1.1.2.*.jar
-5421, org.custommonkey.xmlunit.source_1.3.0.*.jar
-5421, org.custommonkey.xmlunit_1.3.0.*.jar
-4744, org.dojotoolkit_1.5.0.*.jar
-6832, org.h2.source_1.3.168.*.jar
-6832, org.h2_1.3.168.*.jar
-3480, org.junit.source_4.7.0.*.jar
-3480, org.junit_4.7.0.*.jar
-3931, org.objenesis.source_1.0.0.*.jar
-3931, org.objenesis_1.0.0.*.jar
-1398, org.opensaml_1.1.0.*.jar
-5044, org.restlet.ext.servlet.source_2.0.5.*.jar
-5044, org.restlet.ext.servlet_2.0.5.*.jar
-5043, org.restlet.source_2.0.5.*.jar
-5043, org.restlet_2.0.5.*.jar
-2774, org.sat4j.core_2.0.3.*.jar
-3260, org.sat4j.core_2.1.0.*.jar
-3688, org.sat4j.core_2.2.0.*.jar
-5043, org.sat4j.pb_2.0.3.*.jar
-3260, org.sat4j.pb_2.1.0.*.jar
-3688, org.sat4j.pb_2.2.0.*.jar
-
-1155, xmlpull_1_1_3_4b.jar
-30, xpp3-1.1.3.*.jar
-31, xpp3_min-1.1.3.*.jar
-32, xpp3_xpath-1.1.3.*.jar
-
-5204, xmlrpc-client-3.1.3.*.jar
-5204, xmlrpc-common-3.1.3.*.jar
-5204, xmlrpc-server-3.1.3.*.jar
-
-7163, com.ibm.icu.base.source_50.1.1.*.jar
-7163, com.ibm.icu.base_50.1.1.*.jar
-
-5633, async-http-client-1.6.5.*.jar
-5634, netty-3.2.5.*.jar
-
-4784, xstream-1.3.1.*.jar
-4892, slf4j-jdk14-1.5.11.*.jar
-
-6366, aether-connector-file-1.13.1.*.jar
-5652, maven-aether-provider-3.0.3.*.jar
-5648, maven-model-3.0.3.*.jar
-5647, maven-model-builder-3.0.3.*.jar
-5651, maven-repository-metadata-3.0.3.*.jar
-4925, wagon-provider-api-1.0.jar
-
-7123, org.sat4j.core_2.3.4.*.jar
-7124, org.sat4j.pb_2.3.4.*.jar
-
-6500, maven-war-plugin-2.1.1.*.jar
-
-5632, wagon-provider-api-1.0.jar
-
-
-6632, com.cforcoding.jmd_0.8.1.*.jar
-7054, com.naef.jnlua.linux64_1.0.3.*.jar
-7054, com.naef.jnlua.linux_1.0.3.*.jar
-7054, com.naef.jnlua.macosx_1.0.3.*.jar
-7054, com.naef.jnlua.windows64_1.0.3.*.jar
-7054, com.naef.jnlua.windows_1.0.3.*.jar
-7054, com.naef.jnlua_1.0.3.*.jar
-
-4535, org.apache.derby.jdbc_1053.fragment.source_10.5.3.*.jar
-4535, org.apache.derby.jdbc_1053.fragment_10.5.3.*.jar
-5813, org.apache.derby.jdbc_1082.fragment.source_10.8.2.*.jar
-5813, org.apache.derby.jdbc_1082.fragment_10.8.2.*.jar
-7090, org.apache.derby.jdbc_1091.fragment.source_10.9.1.*.jar
-7090, org.apache.derby.jdbc_1091.fragment_10.9.1.*.jar
-
-3528, com.mountainminds.eclemma.core_1.4.2.*.jar
-
-6591, org.objectweb.asm.source_4.0.0.*.jar
-
-7311, org.sat4j.core_2.3.5.*.jar
-7312, org.sat4j.pb_2.3.5.*.jar
-
-6591, org.objectweb.asm_4.0.0.*.jar
-6591, org.objectweb.asm.source_4.0.0.*.jar
-
-7148, org.jsoup_1.7.2.*.jar
-7006, org.apache.poi_3.9.0.*.jar
-7026, org.apache.commons.net_3.2.0.*.jar
-
-6767, guava-13.0.1.*.jar
-4971, forms-1.3.0.*.jar
-
-7326, commons-collections-3.2.1.*.jar
-
-4969, commons-digester-2.0.jar
-4970, commons-lang-2.5.jar
-4761, commons-primitives-1.0.jar
-4971, forms-1.3.0.*.jar
-
-7306, servlet-api-2.5-20081211.jar
-
-5854, poi-3.7-20101029.jar
-6239, poi-ooxml-3.7-20101029.jar
-7008, poi-ooxml-3.9-20121203.jar
-6340, poi-ooxml-schemas-3.7-20101029.jar
-7191, commons-codec-1.5.jar
-
-7321, org.objectweb.asm_4.0.0.*.jar
-7321, org.objectweb.asm.source_4.0.0.*.jar
-
-4960, cglib-nodep-2.2.jar
-
-1380, javax.wsdl15_1.5.1.*.jar
-
-2607, commons-lang-2.1.jar
-
-7348, guava-14.0.1.*.jar
-3575, owasp-java-html-sanitizer-r173.jar
-
-5964, jena-arq-2.9.1.*.jar
-6921, jena-tdb-0.9.1.*.jar
-
-7243, com.google.guava_14.0.1.*.jar
-
-7525, org.apache.httpcomponents.httpclient_4.2.5.*.jar
-7526, org.apache.httpcomponents.httpcore_4.2.4.*.jar
-7367, org.jivesoftware.smack.source_3.3.0.*.jar
-7367, org.jivesoftware.smack_3.3.0.*.jar
-
-7001, org.apache.commons.math3_3.1.1.*.jar
-
-7527, org.apache.commons.codec_1.6.0.*.jar
-7637, com.jcraft.jsch_0.1.50.*.jar
-
-7214, maven-aether-provider-3.1.0.*.jar
-7209, maven-model-3.1.0.*.jar
-7210, maven-model-builder-3.1.0.*.jar
-7213, maven-repository-metadata-3.1.0.*.jar
-7208, plexus-interpolation-1.16.jar
-5630, plexus-utils-2.1.jar
-
-6339, commons-compress-1.1.jar
-5321, commons-httpclient-3.0.jar
-7395, commons-io-2.2.jar
-5348, geronimo-connector-2.2.1.*.jar
-5537, geronimo-j2ee-connector_1.5_spec-2.0.0.*.jar
-5330, geronimo-jta_1.1_spec-1.1.1.*.jar
-5349, geronimo-transaction-2.2.1.*.jar
-
-# Stardust
-Tidy.jar
-dms-modeling.jar
-infinity-oda-parameters-ui.jar
-reporting-wst-integration.jar
-simulation-rt.jar
-viewservlets.jar
-webservices-portal-plugin.jar
-wst-jackrabbit-integration.jar
-
-commons-compress-1.4.1-eclipse01.jar
-commons-dbcp-1.4-eclipse01.jar
-commons-io-1.4-eclipse01.jar
-commons-jxpath-1.3-eclipse01.jar
-commons-logging-1.1.1-eclipse01.jar
-commons-pool-1.3-eclipse01.jar
-commons-pool-1.6-eclipse01.jar
-concurrent-1.3.4-eclipse01.jar
-jackrabbit-core-2.2.5-eclipse01.jar
-jackrabbit-core-2.6.1-eclipse01.jar
-poi-ooxml-3.7-eclipse01.jar
-poi-ooxml-3.8-eclipse01.jar
-poi-scratchpad-3.7-eclipse01.jar
-poi-scratchpad-3.8-eclipse01.jar
-log4j-1.2.15-eclipse01.jar
-myfaces-impl-1.1.5-eclipse01.jar
-slf4j-api-1.5.11-eclipse01.jar
-stax-api-1.0.1-eclipse01.jar
-rome-0.9-eclipse01.jar
-# 5490, jcl-over-slf4j-1.5.11-eclipse01.jar
-#5337, jsr311-api-1.1.1-eclipse01.jar
-
-5485, jackrabbit-api-2.2.5.*.jar
-7399, jackrabbit-api-2.6.1.*.jar
-5486, jackrabbit-jca-2.2.5.*.jar
-7401, jackrabbit-jca-2.6.1.*.jar
-5487, jackrabbit-jcr-commons-2.2.5.*.jar
-7402, jackrabbit-jcr-commons-2.6.1.*.jar
-6341, jackrabbit-jcr-rmi-2.2.5.*.jar
-7403, jackrabbit-jcr-rmi-2.6.1.*.jar
-6342, jackrabbit-jcr-server-2.2.5.*.jar
-7405, jackrabbit-jcr-server-2.6.1.*.jar
-6343, jackrabbit-jcr-servlet-2.2.5.*.jar
-7406, jackrabbit-jcr-servlet-2.6.1.*.jar
-5488, jackrabbit-spi-2.2.5.*.jar
-7407, jackrabbit-spi-2.6.1.*.jar
-5489, jackrabbit-spi-commons-2.2.5.*.jar
-7408, jackrabbit-spi-commons-2.6.1.*.jar
-6344, jackrabbit-webapp-2.2.5.*.jar
-7409, jackrabbit-webapp-2.6.1.*.jar
-6345, jackrabbit-webdav-2.2.5.*.jar
-7410, jackrabbit-webdav-2.6.1.*.jar
-5491, jcr-2.0.jar
-5352, jencks-2.2.jar
-5358, jstl-1.2.jar
-7411, lucene-core-3.6.0.*.jar
-7412, poi-3.8.jar
-7417, poi-ooxml-schemas-3.8.jar
-6981, slf4j-log4j12-1.5.11.*.jar
-6981, slf4j-log4j12.jar
-5502, tagsoup-1.2.jar
-5503, tika-core-0.8.jar
-7539, tika-core-1.1.jar
-5504, tika-parsers-0.8.jar
-7540, tika-parsers-1.1.jar
-5507, tranql-connector-1.7.jar
-
-7219, org.hamcrest.core.source_1.3.0.*.jar
-7219, org.hamcrest.core_1.3.0.*.jar
-7219, org.hamcrest.library.source_1.3.0.*.jar
-7219, org.hamcrest.library_1.3.0.*.jar
-
-3591, jabsorb-1.3.1.*.jar
-3608, jcl104-over-slf4j-1.4.3.*.jar
-
-7351, javax.websocket-api-1.0.jar
-
-7756, org.apache.httpcomponents.httpclient_4.2.6.*.jar
-7755, org.apache.httpcomponents.httpcore_4.2.5.*.jar
-
-7757. javaewah_0.7.9.*.jar
-7668, org.apache.commons.compress_1.6.0.*.jar
-
-5849, oauth-20090617.jar
-5850, oauth-consumer-20090617.jar
-6940, oauth-httpclient4-20090617.jar
-6995, oauth-provider-20090531.jar
-
-7710, com.google.gson_2.2.4.*.jar
-1953, com.thoughtworks.qdox_1.6.3.*.jar
-
-5791, org.agilemore.agilegrid_1.2.2.*.jar
-6551, org.agilemore.agilegrid_1.2.3.*.jar
-7042, org.agilemore.agilegrid_1.3.1.*.jar
-
-7252, com.jcraft.jsch_0.1.50.*.jar
-7635, org.apache.commons.daemon_1.0.15.*.jar
-7634, org.apache.mina.core_2.0.7.*.jar
-7611, org.apache.mina.filter.compression_2.0.7.*.jar
-
-
-7598, asm-4.1.jar
-7598, asm-commons-4.1.jar
-7385, javax.servlet.jsp-2.3.2.*.jar
-7385, javax.servlet.jsp-api-2.3.1.*.jar
-7859, javax.servlet.jsp.jstl-1.2.2.*.jar
-7383, javax.transaction-api-1.2.jar
-7387, servlet-api-3.1.jar
-7384, javax.el-3.0.0.*.jar
-
-6714, mockito-all-1.8.4.*.jar
-8117, org.agilemore.agilegrid_1.3.3.*.jar
-
-8070, com.ibm.icu_52.1.0.*.jar
-7386, javax.annotation_1.2.0.*.jar
-7349, org.apache.ant_1.9.2.*.jar
-org.apache.batik.util.gui_1.7.0.*.jar
-org.apache.batik.util_1.7.0.*.jar
-
-8302, com.ibm.icu.base.source_52.1.0.*.jar
-8302, com.ibm.icu.base_52.1.0.*.jar
-
-com.google.guava_11.0.2.*.jar
-com.google.guava_12.0.0.*.jar
-
-7766, com.google.guava_15.0.0.*.jar
-7248, javax.servlet.source_3.1.0.*.jar
-7248, javax.servlet_3.1.0.*.jar
-7351, javax.websocket.source_1.0.0.*.jar
-7351, javax.websocket_1.0.0.*.jar
-
-7915, org.sonatype.m2e.mavenarchiver.feature_0.16.0.*.jar
-7915, org.sonatype.m2e.mavenarchiver_0.16.0.*.jar
-
-2495, org.apache.batik.dom.svg.source_1.7.0.*.jar
-2495, org.apache.batik.dom.svg_1.7.0.*.jar
-
-7600, org.mockito.mockito-all_1.9.5.*.jar
-
-8129, org.objectweb.asm.commons_5.0.1.*.jar
-8129, org.objectweb.asm.tree_5.0.1.*.jar
-8129, org.objectweb.asm_5.0.1.*.jar
-
-7757, javaewah_0.7.9.*.jar
-
-7106, org.apache.tika.core_1.3.0.*.jar
-7111, org.apache.tika.parsers_1.3.0.*.jar
-
-7726, hazelcast-2.6.7.*.jar
-7722, jackson-annotations-2.2.2.*.jar
-7722, jackson-core-2.2.2.*.jar
-7722, jackson-databind-2.2.2.*.jar
-8191, netty-all-4.0.18.*.jar
-
-8129, org.objectweb.asm_5.0.1.*.jar
-8129, org.objectweb.asm.source_5.0.1.*.jar
-8129, org.objectweb.asm.tree.source_5.0.1.*.jar
-8129, org.objectweb.asm.tree_5.0.1.*.jar
-8129, org.objectweb.asm_5.0.1.*.jar
-
-3555, com.google.code.atinject.tck_1.0.0.*.jar
-
-2453, commons-validator-1.3.1.*.jar
-1955, hessian-3.1.3.*.jar
-3676, hessian-3.2.0.*.jar
-232, jakarta-oro-2.0.8.*.jar
-
-230, commons-net-1.4.1.*.jar
-6183, commons-lang-2.6.jar
-
-7945, plexus-classworlds-2.5.1.*.jar
-7946, plexus-interpolation-1.19.jar
-7947, plexus-utils-3.0.17.*.jar
-7952, slf4j-simple-1.7.5.*.jar
-
-7954, takari-filemanager-0.7.0.*.jar
-7953, takari-local-repository-0.9.0.*.jar
-7956, wagon-file-2.6.jar
-7957, wagon-provider-api-2.6.jar
-
-
-7955, aether-connector-okhttp-0.12.0.*.jar
-6081, cdi-api-1.0.jar
-7056, guava-11.0.2.*.jar
-7958, maven-aether-provider-3.2.1.*.jar
-7959, maven-artifact-3.2.1.*.jar
-7960, maven-compat-3.2.1.*.jar
-7961, maven-core-3.2.1.*.jar
-7962, maven-embedder-3.2.1.*.jar
-7963, maven-model-3.2.1.*.jar
-7964, maven-model-builder-3.2.1.*.jar
-7965, maven-plugin-api-3.2.1.*.jar
-7966, maven-repository-metadata-3.2.1.*.jar
-7967, maven-settings-3.2.1.*.jar
-7968, maven-settings-builder-3.2.1.*.jar
-7277, okhttp-1.0.2.*.jar
-7943, okhttp-1.3.0.*.jar
-8267, okhttp-1.5.4.*.jar
-7944, okhttp-protocols-1.3.0.*.jar
-7945, plexus-classworlds-2.5.1.*.jar
-7946, plexus-interpolation-1.19.jar
-7947, plexus-utils-3.0.15.*.jar
-7947, plexus-utils-3.0.17.*.jar
-7951, sisu-guice-3.1.3-no_aop.jar
-7952, slf4j-simple-1.7.5.*.jar
-
-7950, jsr250-api-1.0.jar
-5351, cglib-nodep-2.1_3.jar
-1430, nekohtml-0.9.5.*.jar
-7395, org.apache.commons.io_2.2.0.*.jar
-7600, org.mockito_1.9.5.*.jar
-6737, org.mozilla.javascript_1.7.4.*.jar
-
-7568, jaxb-impl-2.2.5.*.jar
-7375, owasp-java-html-sanitizer-r173.jar
-8089, spring-aop-3.2.8.*.jar
-8105, spring-beans-3.2.8.*.jar
-8106, spring-context-3.2.8.*.jar
-8107, spring-core-3.2.8.*.jar
-8108, spring-expression-3.2.8.*.jar
-8109, spring-jdbc-3.2.8.*.jar
-8183, spring-ldap-core-1.3.2.*.jar
-8184, spring-security-acl-3.2.1.*.jar
-8185, spring-security-config-3.2.1.*.jar
-8087, spring-security-core-3.2.1.*.jar
-8186, spring-security-ldap-3.2.1.*.jar
-8187, spring-security-web-3.2.1.*.jar
-8110, spring-tx-3.2.8.*.jar
-8188, spring-web-3.2.8.*.jar
-
-7833, com.codeminders.hidapi_1.1.0.*.jar
-7834, javax.usb.api_1.0.2.*.jar
-7835, javax.usb.common_1.0.2.*.jar
-7838, log4j.apache-log4j-extras_1.1.0.*.jar
-7837, log4j_1.2.17.*.jar
-6952, org.apache.commons.io_2.4.0.*.jar
-7821, org.apache.felix.dependencymanager_3.0.0.*.jar
-7856, org.apache.felix.deploymentadmin_0.9.5.*.jar
-7843, org.hsqldb.hsqldb_2.3.0.*.jar
-7846, org.knowhowlab.osgi.monitoradmin_1.0.2.*.jar
-7880, org.tigris.mtoolkit.iagent.rpc_3.0.0.*.jar
-7847, osgi.cmpn_4.3.0.*.jar
-5832, slf4j.api_1.6.4.*.jar
-7850, slf4j.log4j12_1.6.0.*.jar
-7826, com.gwt.user_0.2.0.*.jar
-7854, org.apache.servicemix.bundles.protobuf-java_2.4.1.*.jar
-
-7795, jmdns-3.4.1.*.jar
-7793, joda-time-2.3.jar
-8246, mapdb-1.0.2.*.jar
-7794, quartz-2.2.1.*.jar
-7794, quartz-jobs-2.2.1.*.jar
-7796, xchart-2.2.1.*.jar
-8414, xstream-1.4.7.*.jar
-
-8425, org.apache.oltu.oauth2.client_1.0.0.*.jar
-8425, org.apache.oltu.oauth2.common_1.0.0.*.jar
-
-8292, io.netty.buffer-4.0.19.*.jar
-8292, io.netty.buffer_4.0.19.*.jar
-8292, io.netty.codec-4.0.19.*.jar
-8292, io.netty.codec_4.0.19.*.jar
-8292, io.netty.common-4.0.19.*.jar
-8292, io.netty.common_4.0.19.*.jar
-8292, io.netty.handler-4.0.19.*.jar
-8292, io.netty.handler_4.0.19.*.jar
-8292, io.netty.transport-4.0.19.*.jar
-8292, io.netty.transport_4.0.19.*.jar
-8398, org.apache.commons.compress-1.5.0.*.jar
-8398, org.apache.commons.compress_1.5.0.*.jar
-
-
-8823, jdk.dio_1.0.0.*.jar
-iot.paho, mqtt-client_*.jar
-7833, com.codeminders.hidapi_1.1.1.*.jar
-
-8372, com.sun.xml.bind.jaxb-core_2.2.11.*.jar
-8371, com.sun.xml.bind.jaxb-xjc_2.2.11.*.jar
-7364, javax.json-1.0.jar
-8334. javax.validation_1.1.0.*.jar
-8372, javax.xml.bind.source_2.2.12.*.jar
-8372, javax.xml.bind_2.2.12.*.jar
-8372, jaxb-api_2.2.12.*.jar
-8372, jaxb-core.source_2.2.11.*.jar
-8372, jaxb-core_2.2.11.*.jar
-8371, jaxb-xjc.source_2.2.11.*.jar
-8371, jaxb-xjc_2.2.11.*.jar
-8679, org.glassfish.javax.json.source_1.0.4.*.jar
-7364, org.glassfish.javax.json_1.0.0.*.jar
-8679, org.glassfish.javax.json_1.0.4.*.jar
-
-8598, org.apache.xmlgraphics_1.4.0.*.jar
-
-9144, com.ibm.icu_54.1.1.*.jar
-8378, com.jcraft.jsch_0.1.51.*.jar
-8619, org.apache.ant_1.9.4.*.jar
-8934, org.apache.httpcomponents.httpclient_4.3.6.*.jar
-8938, org.apache.httpcomponents.httpcore_4.3.3.*.jar
-
-rt.jetty, javax-websocket-client-impl-9.1.0.*.jar
-rt.jetty, websocket-api-9.1.0.*.jar
-rt.jetty, websocket-client-9.1.0.*.jar
-rt.jetty, websocket-common-9.1.0.*.jar
-rt.jetty, websocket-servlet-9.1.0.*.jar
-1032, xercesImpl-2.6.2.*.jar
-
-9004, org.apache.httpcomponents.httpcore_4.3.3.*.jar
-9005, org.apache.httpcomponents.httpclient_4.3.6.*.jar
-
-jandex-1.2.2.*.jar
-
-8219, org.apache.commons.fileupload_1.3.1.*.jar
-8486, org.apache.httpcomponents.httpclient.source_4.3.4.*.jar
-8486, org.apache.httpcomponents.httpclient_4.3.4.*.jar
-8487, org.apache.httpcomponents.httpcore.source_4.3.2.*.jar
-8487, org.apache.httpcomponents.httpcore_4.3.2.*.jar
-
-org.xmlpull-1.1.3.*.jar
-
-7528, org.tukaani.xz_1.3.0.*.jar
-9319, freemarker-2.3.22.*.jar
-
-6477, ca.odell.glazedlists_1.9.0.*.jar
-9141, com.ibm.icu.source_52.1.1.*.jar
-9141, com.ibm.icu_52.1.1.*.jar
-9232, org.junit.source_4.12.0.*.jar
-7665, org.slf4j.impl.log4j12_1.7.2.*.jar
-
-8895, org.antlr.runtime_4.3.0.*.jar
-
-9422, bcpkix_1.51.0.*.jar
-9421, bcprov_1.51.0.*.jar
-
-9102, com.fasterxml.jackson.core.jackson-annotations_2.5.0.*.jar
-9103, com.fasterxml.jackson.core.jackson-core_2.5.0.*.jar
-9101, com.fasterxml.jackson.core.jackson-databind_2.5.0.*.jar
-9100, com.fasterxml.jackson.datatype.jackson-datatype-guava_2.5.0.*.jar
-9106, com.fasterxml.jackson.jaxrs.jackson-jaxrs-base_2.5.0.*.jar
-9099, com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider_2.5.0.*.jar
-9095, com.kenai.jffi_1.2.7.*.jar
-9214, com.spotify.docker.client_2.7.18.*.jar
-9214, docker-client-2.7.18.*.jar
-9114, hk2-api-2.3.0-b10.jar
-9119, hk2-locator-2.3.0-b10.jar
-9116, hk2-utils-2.3.0-b10.jar
-9095, jffi-1.2.7.*.jar
-9091, jnr-constants-0.8.6.*.jar
-9094, jnr-x86asm-1.0.2.*.jar
-9091, jnr.constants_0.8.6.*.jar
-9093, jnr.enxio_0.6.0.*.jar
-9090, jnr.ffi_2.0.1.*.jar
-9092, jnr.posix_3.0.9.*.jar
-9089, jnr.unixsocket_0.5.0.*.jar
-9094, jnr.x86asm_1.0.2.*.jar
-9114, org.glassfish.hk2.api_2.3.0.*.jar
-9119, org.glassfish.hk2.locator_2.3.0.*.jar
-9115, org.glassfish.hk2.osgi-resource-locator_2.3.0.*.jar
-9116, org.glassfish.hk2.utils_2.3.0.*.jar
-9110, org.glassfish.jersey.apache.connector_2.14.0.*.jar
-9112, org.glassfish.jersey.bundles.repackaged.jersey-guava_2.14.0.*.jar
-9109, org.glassfish.jersey.core.jersey-client_2.14.0.*.jar
-9111, org.glassfish.jersey.core.jersey-common_2.14.0.*.jar
-9113, org.glassfish.jersey.media.jersey-media-json-jackson_2.14.0.*.jar
-7386, javax.annotation-api-1.2.jar
-4462, javassist_3.13.0.GA_v201209210905.jar
-9456, javax.ws.rs-api-2.0.1.*.jar
-9456, javax.ws.rs_2.0.1.*.jar
-
-8928, com.google.protobuf_2.6.0.*.jar
-
-7873, org.tigris.mtoolkit.certmanager.source_1.0.0.*.jar
-7873, org.tigris.mtoolkit.certmanager_1.0.0.*.jar
-7876, org.tigris.mtoolkit.common.source_5.1.0.*.jar
-7876, org.tigris.mtoolkit.common_5.1.0.*.jar
-7877, org.tigris.mtoolkit.dpeditor.source_1.2.0.*.jar
-7879, org.tigris.mtoolkit.dpeditor.userdoc.source_1.0.0.*.jar
-7879, org.tigris.mtoolkit.dpeditor.userdoc_1.0.0.*.jar
-7877, org.tigris.mtoolkit.dpeditor_1.2.0.*.jar
-7881, org.tigris.mtoolkit.iagent.source_3.1.0.*.jar
-7881, org.tigris.mtoolkit.iagent_3.1.0.*.jar
-7882, org.tigris.mtoolkit.osgimanagement.ext.application.source_1.0.0.*.jar
-7882, org.tigris.mtoolkit.osgimanagement.ext.application_1.0.0.*.jar
-7883, org.tigris.mtoolkit.osgimanagement.ext.dp.source_1.0.0.*.jar
-7884, org.tigris.mtoolkit.osgimanagement.ext.dp.userdoc.source_1.0.0.*.jar
-7884, org.tigris.mtoolkit.osgimanagement.ext.dp.userdoc_1.0.0.*.jar
-7883, org.tigris.mtoolkit.osgimanagement.ext.dp_1.0.0.*.jar
-7885, org.tigris.mtoolkit.osgimanagement.source_5.0.0.*.jar
-7885, org.tigris.mtoolkit.osgimanagement_5.0.0.*.jar
-7886, org.tigris.mtoolkit.userdoc.source_1.0.0.*.jar
-7886, org.tigris.mtoolkit.userdoc_1.0.0.*.jar
-
-8575, com.kitfox.svg_0.1.29.*.jar
-8575, svgSalamander-0.1.29.*.jar
-
-2606, org.antlr.runtime_v31_3.1.0.*.jar
-
-9478, archetype-catalog-2.3.jar
-9480, archetype-common-2.3.jar
-9481, archetype-descriptor-2.3.jar
-9482, archetype-registry-2.3.jar
-9477, commons-collections-3.1.jar
-9476, commons-io-2.2.jar
-9272, guava-18.0.jar
-7398, jetty-6.1.22.*.jar
-9264, maven-aether-provider-3.3.3.*.jar
-9262, maven-artifact-3.3.3.*.jar
-9266, maven-builder-support-3.3.3.*.jar
-9263, maven-compat-3.3.3.*.jar
-9260, maven-core-3.3.3.*.jar
-9265, maven-embedder-3.3.3.*.jar
-9483, maven-invoker-2.1.1.*.jar
-9261, maven-model-3.3.3.*.jar
-9266, maven-model-builder-3.3.3.*.jar
-9267, maven-plugin-api-3.3.3.*.jar
-9268, maven-repository-metadata-3.3.3.*.jar
-9269, maven-settings-3.3.3.*.jar
-9270, maven-settings-builder-3.3.3.*.jar
-9274, okhttp-2.2.0.*.jar
-9284, okhttp-urlconnection-2.0.0.*.jar
-9275, okio-1.2.0.*.jar
-9281, plexus-classworlds-2.5.2.*.jar
-9282, plexus-interpolation-1.21.jar
-9283, plexus-utils-3.0.20.*.jar
-9284, plexus-velocity-1.1.8.*.jar
-9277, sisu-guice-3.2.3-no_aop.jar
-9280, wagon-file-2.9.jar
-9279, wagon-provider-api-2.9.jar
-9245, org.sonatype.m2e.mavenarchiver.feature_0.17.0.*.jar
-9245, org.sonatype.m2e.mavenarchiver_0.17.0.*.jar
-
-9718, sisu-guice-3.2.5-no_aop.jar
-9277, sisu-guice-3.2.3-no_aop.jar
-7398, jetty-6.1.22.*.jar
-
-9377, com.google.guava_18.0.0.*.jar
-9406, com.gradleware.tooling.client_0.3.0.*.jar
-9407, com.gradleware.tooling.model_0.3.0.*.jar
-9408, com.gradleware.tooling.utils_0.3.0.*.jar
-9381, gradle-tooling-api-2.4-20150310170129+0000-sources.jar
-9381, gradle-tooling-api-2.4-20150310170129+0000.jar
-9379, gson-2.2.4-sources.jar
-9379, gson-2.2.4.*.jar
-9377, guava-18.0-sources.jar
-9377, guava-18.0.jar
-9381, org.gradle.toolingapi_2.4.0.*.jar
-9380, org.slf4j.api_1.7.10.*.jar
-9424, org.slf4j.simple_1.7.10.*.jar
-9380, slf4j-api-1.7.10-sources.jar
-9380, slf4j-api-1.7.10.*.jar
-9424, slf4j-simple-1.7.10-sources.jar
-9424, slf4j-simple-1.7.10.*.jar
-9406, toolingclient-0.3-sources.jar
-9406, toolingclient-0.3.jar
-9407, toolingmodel-0.3-sources.jar
-9407, toolingmodel-0.3.jar
-9408, toolingutils-0.3-sources.jar
-9408, toolingutils-0.3.jar
-
-2761, jmunit4cldc10-1.2.1.*.jar
-2769, jmunit4cldc11-1.2.1.*.jar
-
-8822, opencsv-1.8.jar
-
-9987, com.spotify.docker.client.source_3.1.1.*.jar
-9987, com.spotify.docker.client_3.1.1.*.jar
-10062, javassist_3.13.0.*.jar
-9422, org.bouncycastle.bcpkix_1.51.0.*.jar
-9421, org.bouncycastle.bcprov_1.51.0.*.jar
-
-
-9532, jsoup-1.7.2.*.jar
-
-7837, log4j-1.2.17.*.jar
-
-9505, org.apache.commons.lang-2.6.jar
-9538, slf4j-api-1.7.2.*.jar
-9539, slf4j-log4j12-1.7.2.*.jar
-
-9717, okio-1.3.0.*.jar
-5816, guice-3.0.jar
-
-asm-5.0.3.*.jar (No CQ found)
-cglib-2.2.1-v20090111.jar (No CQ found)
-common-3.6.200-v20130402-1505.jar (No CQ found)
-okhttp-2.3.0.*.jar (No CQ found)
-org.apache.commons.io_2.2.0.*.jar (No CQ found)
-org.apache.commons.lang3_3.1.0.*.jar (No CQ found)
-stringtemplate-3.2.jar (No CQ found)
-
-7834, javax.usb.linux_1.0.3.*.jar
-9832, org.apache.commons.lang3_3.4.0.*.jar
-7849, slf4j.jdk14_1.6.4.*.jar
-
-9716, okhttp-2.3.0.*.jar
-9857, asm-5.0.4.*.jar
-9859, jcommander-1.48.jar
-9858, json-simple-1.1.1.*.jar
-9860, txtmark-0.13.jar
-
-10319, com.spotify.docker.client-3.1.10.*.jar
-10319, com.spotify.docker.client.source-3.1.10.*.jar
-10319, com.spotify.docker.client.source_3.1.10.*.jar
-10319, com.spotify.docker.client_3.1.10.*.jar
-10279, org.assertj.source_1.7.1.*.jar
-10279, org.assertj_1.7.1.*.jar
-
-9840, com.jcraft.jsch_0.1.53.*.jar
-10201, org.apache.ant_1.9.6.*.jar
-
-9734, org.usb4java_1.0.0.*.jar
-9927, usb4java-javax_1.0.0.*.jar
-
-9194, jdk.dio_1.0.2.*.jar
-
-10707, cloudfoundry-client-lib-1.1.4.*.jar
-10842, commons-codec-1.6.jar
-10837, commons-io-2.1.jar
-10836, commons-logging-1.1.3.*.jar
-10162, commons-logging-1.2.jar
-10838, httpclient-4.3.6.*.jar
-10839, httpcore-4.3.3.*.jar
-10840, jackson-annotations-2.3.0.*.jar
-10843, jackson-core-2.3.3.*.jar
-10186, jackson-core-asl-1.9.13.*.jar
-10834, jackson-databind-2.3.3.*.jar
-10187, jackson-mapper-asl-1.9.13.*.jar
-10828, protobuf-java-2.6.1.*.jar
-10829, snakeyaml-1.13.jar
-10163, spring-aop-4.0.5.*.jar
-10164, spring-beans-4.0.5.*.jar
-10188, spring-boot-loader-tools-1.2.3.*.jar
-10165, spring-context-4.0.5.*.jar
-10166, spring-core-4.0.5.*.jar
-10835, spring-core-4.1.6.*.jar
-10167, spring-expression-4.0.5.*.jar
-10830, spring-security-config-3.2.5.*.jar
-10831, spring-security-core-3.2.5.*.jar
-10190, spring-security-oauth2-2.0.4.*.jar
-10832, spring-security-web-3.2.5.*.jar
-10168, spring-web-4.0.5.*.jar
-10833, spring-webmvc-4.0.5.*.jar
-10191, tomcat-embed-core-8.0.15.*.jar
-10192, tomcat-embed-websocket-8.0.15.*.jar
-10193, tomcat-juli-8.0.15.*.jar
-10194, yamlbeans-1.06.jar
-
-1907, org.apache.commons.logging_1.1.1.*.jar
-
-bcpg_1.51.0.*.jar
-bcprov_1.51.0.*.jar
-10239, com.fasterxml.classmate_1.3.0.*.jar
-9890, com.google.gson_2.3.1.*.jar
-com.sun.el.javax.el_3.0.0.*.jar
-com.sun.mail.javax.mail_1.5.3.*.jar
-9889, javax.validation.api_1.1.0.*.jar
-org.apache.aries.spifly.dynamic.bundle_1.0.1.*.jar
-org.apache.aries.util_1.1.0.*.jar
-9887, org.apache.commons.compress_1.9.0.*.jar
-9898, org.apache.felix.configadmin_1.8.4.*.jar
-9942, org.apache.jasper.glassfish_2.3.2.*.jar
-org.apache.xalan_2.7.1.*.jar
-9901, org.apache.xbean.bundleutils_4.3.0.*.jar
-9900, org.apache.xbean.finder_4.3.0.*.jar
-9902, org.apache.xbean.reflect_4.3.0.*.jar
-org.apache.xml.serializer_2.7.1.*.jar
-10339, org.hibernate.validator_5.2.2.*.jar
-9891, org.jboss.logging.jboss-logging_3.1.3.*.jar
-9895, org.jboss.spec.javax.servlet.jstl.jboss-jstl-api_1.2_spec_1.1.2.*.jar
-9903, org.ops4j.pax.web.pax-web-api_4.1.2.*.jar
-9907, org.ops4j.pax.web.pax-web-extender-whiteboard_4.1.2.*.jar
-9906, org.ops4j.pax.web.pax-web-jetty_4.1.2.*.jar
-9905, org.ops4j.pax.web.pax-web-runtime_4.1.2.*.jar
-9904, org.ops4j.pax.web.pax-web-spi_4.1.2.*.jar
-9941, org.tukani.xz_1.5.0.*.jar
-
-9683, org.apache.batik.dom_1.6.1.*.jar
-
-animal-sniffer-annotations-1.14.jar (No CQ found)
-commons-lang-2.6.jar (No CQ found)
-fluent-hc-4.5.2.*.jar (No CQ found)
-httpclient-4.5.2.*.jar (No CQ found)
-httpclient-cache-4.5.2.*.jar (No CQ found)
-httpclient-osgi-4.5.2.*.jar (No CQ found)
-httpcore-4.4.4.*.jar (No CQ found)
-httpcore-nio-4.4.4.*.jar (No CQ found)
-httpcore-osgi-4.4.4.*.jar (No CQ found)
-httpmime-4.5.2.*.jar (No CQ found)
-spatial4j-0.4.1.*.jar (No CQ found)
-
-10647, asm-4.2.jar
-10614, cglib-3.1.jar
-10488, commons-codec-1.10.jar
-10460, commons-io-2.4.jar
-10533, commons-lang3-3.3.2.*.jar
-10527, jackson-annotations-2.6.2.*.jar
-10528, jackson-core-2.6.2.*.jar
-10529, jackson-databind-2.6.2.*.jar
-10578, jcl-over-slf4j-1.7.10.*.jar
-10530, jsonld-java-0.7.0.*.jar
-11532, jsonld-java-0.8.3.*.jar
-10462, jstl-1.1.2.*.jar
-10456. logback-classic-1.1.2.*.jar
-10457, logback-core-1.1.2.*.jar
-10565, lucene-analyzers-common-5.2.1.*.jar
-10564, lucene-core-5.2.1.*.jar
-10605, lucene-highlighter-5.2.1.*.jar
-10606, lucene-join-5.2.1.*.jar
-10607, lucene-memory-5.2.1.*.jar
-10608, lucene-misc-5.2.1.*.jar
-10609, lucene-queries-5.2.1.*.jar
-10610, lucene-queryparser-5.2.1.*.jar
-10611, lucene-sandbox-5.2.1.*.jar
-10612, lucene-spatial-5.2.1.*.jar
-10552, mapdb-1.0.8.*.jar
-10531, opencsv-3.2.jar
-10566, spring-aop-4.2.1.*.jar
-10567, spring-beans-4.2.1.*.jar
-10568, spring-context-4.2.1.*.jar
-10569, spring-core-4.2.1.*.jar
-10570, spring-expression-4.2.1.*.jar
-10571, spring-web-4.2.1.*.jar
-10572, spring-webmvc-4.2.1.*.jar
-10462, standard-1.1.2.*.jar
-
-11712, fluent-hc-4.5.2.jar
-11713, httpclient-4.5.2.jar
-11714, httpclient-cache-4.5.2.jar
-11715, httpclient-osgi-4.5.2.jar
-11716, httpcore-4.4.4.jar
-11717, httpcore-nio-4.4.4.jar
-11716, httpcore-osgi-4.4.4.jar
-11718, httpmime-4.5.2.jar
-9061, logback-classic-1.1.2.jar
-
-10907, com.spotify.docker.client.source_3.4.0.*.jar
-10907, com.spotify.docker.client_3.4.0.*.jar
-
-8740, com.google.gdata_1.47.1_1.47.1.*.jar
-9445, com.google.guava_18.0_18.0.0.*.jar
-10545, org.apache.commons.collections_3.2.1_3.2.1.*.jar
-10548, org.apache.commons.lang3_3.1_3.1.0.*.jar
-9442, org.apache.log4j_1.2.17_1.2.17.*.jar
-9213, org.apache.poi.ooxml.schemas_3.10.1_3.10.1.*.jar
-9212, org.apache.poi.ooxml_3.10.1_3.10.1.*.jar
-8965, org.apache.poi_3.10.1_3.10.1.*.jar
-8966, org.apache.xmlbeans_2.6.0_2.6.0.*.jar
-9441, org.dom4j_1.6.1_1.6.1.*.jar
-9443, org.slf4j.api_1.7.2_1.7.2.*.jar
-9444, org.slf4j.log4j12_1.7.2_1.7.2.*.jar
-
-10439, diva_11.0.0.*.jar
-11656, org.apache.xmlrpc.client_3.1.3.*.jar
-11656, org.apache.xmlrpc.common_3.1.3.*.jar
-11656, org.apache.xmlrpc.server_3.1.3.*.jar
-10446, org.ptolemy.commons_11.0.0.*.jar
-10440, ptolemy.actor.lib.gui_11.0.0.*.jar
-10444, ptolemy.actor.lib_11.0.0.*.jar
-10442, ptolemy.core_11.0.0.*.jar
-10856, ptolemy.domains.process_11.0.0.*.jar
-10443, ptolemy.domains.sdf_11.0.0.*.jar
-10444, ptolemy.gui_11.0.0.*.jar
-10445, ptolemy.moml_11.0.0.*.jar
-
-11383, archetype-catalog-2.4.jar
-11384, archetype-common-2.4.jar
-11385, archetype-descriptor-2.4.jar
-11386, archetype-registry-2.4.jar
-10420, com.ibm.icu.source_56.1.0.*.jar
-10420, com.ibm.icu_56.1.0.*.jar
-9987, com.spotify.docker-client.shaded_3.1.1.*.jar
-8579, com.springsource.snakeyaml-1.6.0.*.jar
-10385, commons-collections-3.2.2.*.jar
-9623, commons-lang3-3.4.jar
-9146, gov.lbnl.visit.swt_1.0.0.*.jar
-8815, guice-4.0-no_aop.jar
-11394, maven-aether-provider-3.3.9.*.jar
-11395, maven-artifact-3.3.9.*.jar
-11396, maven-builder-support-3.3.9.*.jar
-11397, maven-compat-3.3.9.*.jar
-11399, maven-core-3.3.9.*.jar
-11400, maven-embedder-3.3.9.*.jar
-11401, maven-model-3.3.9.*.jar
-11402, maven-model-builder-3.3.9.*.jar
-11403, maven-plugin-api-3.3.9.*.jar
-11404, maven-repository-metadata-3.3.9.*.jar
-11405, maven-settings-3.3.9.*.jar
-11406, maven-settings-builder-3.3.9.*.jar
-11390, okhttp-2.5.0.*.jar
-11382, okio-1.6.0.*.jar
-11385, org.apache.commons.collections_3.2.2.*.jar
-11408, plexus-component-annotations-1.6.jar
-11393, plexus-utils-3.0.22.*.jar
-11391, wagon-file-2.10.jar
-11282, wagon-provider-api-2.10.jar
-
-11915, org.bouncycastle.bcpkix-jdk15on_1.52.0.*.jar
-11915, org.bouncycastle.bcpkix_1.52.0.*.jar
-11914, org.bouncycastle.bcprov-jdk15on_1.52.0.*.jar
-11914, org.bouncycastle.bcprov_1.52.0.*.jar
-11234, org.objectweb.asm_5.1.0.*.jar
-10989, org.swtchart_0.10.0.*.jar
-
-10584, com.adobe.xmp:xmpcore:jar:5.1.2:compile
-10585, com.beust:jcommander:jar:1.48:compile
-11377, com.clearspring.analytics:stream:jar:2.9.1:compile
-10556, com.drewnoakes:metadata-extractor:jar:2.8.1:compile
-8702, com.esotericsoftware.kryo:kryo:jar:2.21:compile
-8701, com.esotericsoftware.minlog:minlog:jar:1.2:compile
-8712, com.esotericsoftware.reflectasm:reflectasm:jar:1.07:compile
-12021, com.github.ben-manes.caffeine:caffeine:jar:2.3.3:compile
-11936, com.googlecode.concurrent-trees:concurrent-trees:jar:2.6.0:compile
-11855, com.googlecode.cqengine:cqengine:jar:2.7.1:compile
-9766, com.googlecode.efficient-java-matrix-library:core:jar:0.26:compile
-10587, com.google.code.gson:gson:jar:2.3.1:compile
-8716, com.googlecode.json-simple:json-simple:jar:1.1:compile
-10305, com.googlecode.juniversalchardet:juniversalchardet:jar:1.0.3:compile
-10730, com.google.guava:guava:jar:12.0:compile
-10588, com.google.guava:guava:jar:14.0.1:compile
-10589. com.google.guava:guava:jar:17.0:compile
-9085, com.google.guava:guava:jar:18.0:compile
-11927, com.jayway.jsonpath:json-path:jar:2.2.0:compile
-10593, commons-beanutils:commons-beanutils-core:jar:1.8.0:compile
-10592, commons-beanutils:commons-beanutils:jar:1.7.0:compile
-10595, commons-codec:commons-codec:jar:1.9:compile
-11072, commons-collections:commons-collections:jar:3.2.2:compile
-10596, commons-configuration:commons-configuration:jar:1.6:compile
-10597, commons-digester:commons-digester:jar:1.8:compile
-8697, commons-io:commons-io:jar:2.1:compile
-8732, commons-lang:commons-lang:jar:2.6:compile
-8733, commons-logging:commons-logging:jar:1.1.1:compile
-8736, commons-net:commons-net:jar:3.3:compile
-8435, commons-pool:commons-pool:jar:1.6:compile
-com.spatial4j:spatial4j:jar:0.4.1:compile
-10626, com.sun.xml.bind:jaxb-core:jar:2.2.11:compile
-10625, com.sun.xml.bind:jaxb-impl:jar:2.2.11:compile
-10601, com.thoughtworks.paranamer:paranamer:jar:2.6:compile
-9331, com.typesafe:config:jar:1.2.1:compile
-10602, com.typesafe.scala-logging:scala-logging_2.11:jar:3.1.0:compile
-8356, com.vividsolutions:jts:jar:1.13:compile
-10303, eu.medsea.mimeutil:mime-util:jar:2.1.3:compile
-11008, io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
-11008, io.dropwizard.metrics:metrics-ganglia:jar:3.1.2:compile
-11008, io.dropwizard.metrics:metrics-graphite:jar:3.1.2:compile
-11818, it.geosolutions.jaiext.affine:jt-affine:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.algebra:jt-algebra:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.bandcombine:jt-bandcombine:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.bandmerge:jt-bandmerge:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.bandselect:jt-bandselect:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.binarize:jt-binarize:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.border:jt-border:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.buffer:jt-buffer:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.classifier:jt-classifier:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.colorconvert:jt-colorconvert:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.colorindexer:jt-colorindexer:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.crop:jt-crop:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.errordiffusion:jt-errordiffusion:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.format:jt-format:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.imagefunction:jt-imagefunction:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.iterators:jt-iterators:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.lookup:jt-lookup:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.mosaic:jt-mosaic:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.nullop:jt-nullop:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.orderdither:jt-orderdither:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.piecewise:jt-piecewise:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.rescale:jt-rescale:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.rlookup:jt-rlookup:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.scale:jt-scale:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.stats:jt-stats:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.translate:jt-translate:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.utilities:jt-utilities:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.vectorbin:jt-vectorbin:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.warp:jt-warp:jar:1.0.9:compile
-11818, it.geosolutions.jaiext.zonal:jt-zonal:jar:1.0.9:compile
-8427, joda-time:joda-time:jar:2.3:compile
-8692, log4j:log4j:jar:1.2.17:compile
-10304, net.iharder:base64:jar:2.3.8:compile
-10628, net.java.dev.jsr-275:jsr-275:jar:1.0-beta-2:compile
-11929, net.minidev:accessors-smart:jar:1.1:compile
-11928, net.minidev:json-smart:jar:2.2.1:compile
-10649, net.sf.geographiclib:GeographicLib-Java:jar:1.44:compile
-11935, org.antlr:antlr4-runtime:jar:4.5:compile
-11816, org.apache.accumulo:accumulo-core:jar:1.7.2:compile
-11816, org.apache.accumulo:accumulo-fate:jar:1.7.2:compile
-11816, org.apache.accumulo:accumulo-start:jar:1.7.2:compile
-8506, org.apache.avro:avro:jar:1.7.5:compile
-9578, org.apache.camel:camel-core:jar:2.15.1:compile
-9578, org.apache.camel:camel-scala:jar:2.15.1:compile
-8671, org.apache.commons:commons-compress:jar:1.4.1:compile
-org.apache.commons:commons-csv:jar:1.0:compile
-org.apache.commons:commons-lang3:jar:3.3.2:compile
-org.apache.commons:commons-math:jar:2.1:compile
-org.apache.commons:commons-pool2:jar:2.2:compile
-org.apache.commons:commons-vfs2:jar:2.1:compile
-org.apache.curator:curator-client:jar:2.4.0:compile
-10300, org.apache.curator:curator-client:jar:2.7.1:compile
-10633, org.apache.curator:curator-framework:jar:2.4.0:compile
-10300, org.apache.curator:curator-framework:jar:2.7.1:compile
-10633, org.apache.curator:curator-recipes:jar:2.4.0:compile
-10300, org.apache.curator:curator-recipes:jar:2.7.1:compile
-org.apache.htrace:htrace-core:jar:3.1.0-incubating:compile
-org.apache.metamodel:MetaModel-core:jar:4.3.6:compile
-org.apache.metamodel:MetaModel-pojo:jar:4.3.6:compile
-org.apache.thrift:libthrift:jar:0.9.1:compile
-org.apache.xml:xml-commons-resolver:jar:1.2:compile
-org.apache.zookeeper:zookeeper:jar:3.4.5:compile
-org.calrissian.mango:mango-core:jar:1.2.0:compile
-org.clapper:grizzled-slf4j_2.11:jar:1.0.2:compile
-8499, org.codehaus.jackson:jackson-core-asl:jar:1.9.3:compile
-8499, org.codehaus.jackson:jackson-mapper-asl:jar:1.9.3:compile
-10703, org.gdal:gdal:jar:2.0.0:compile
-11817, org.geotools:gt-api:jar:15.1:compile
-11817, org.geotools:gt-coverage:jar:15.1:compile
-11817, org.geotools:gt-cql:jar:15.1:compile
-11817, org.geotools:gt-data:jar:15.1:compile
-11817, org.geotools:gt-epsg-hsql:jar:15.1:compile
-11817, org.geotools:gt-geojson:jar:15.1:compile
-11817, org.geotools:gt-geotiff:jar:15.1:compile
-11817, org.geotools:gt-graph:jar:15.1:compile
-11817, org.geotools:gt-grid:jar:15.1:compile
-11817, org.geotools:gt-imageio-ext-gdal:jar:15.1:compile
-11817, org.geotools:gt-main:jar:15.1:compile
-11817, org.geotools:gt-metadata:jar:15.1:compile
-11817, org.geotools:gt-opengis:jar:15.1:compile
-11817, org.geotools:gt-process-feature:jar:15.1:compile
-11817, org.geotools:gt-process:jar:15.1:compile
-11817, org.geotools:gt-referencing:jar:15.1:compile
-11817, org.geotools:gt-render:jar:15.1:compile
-11817, org.geotools:gt-shapefile:jar:15.1:compile
-11817, org.geotools:gt-transform:jar:15.1:compile
-11817, org.geotools:gt-xml:jar:15.1:compile
-11817, org.geotools.ogc:net.opengis.fes:jar:15.1:compile
-11817, org.geotools.ogc:net.opengis.ows:jar:15.1:compile
-11817, org.geotools.ogc:net.opengis.wfs:jar:15.1:compile
-11817, org.geotools.ogc:org.w3.xlink:jar:15.1:compile
-11817, org.geotools.xsd:gt-xsd-core:jar:15.1:compile
-11817, org.geotools.xsd:gt-xsd-fes:jar:15.1:compile
-11817, org.geotools.xsd:gt-xsd-filter:jar:15.1:compile
-11817, org.geotools.xsd:gt-xsd-gml2:jar:15.1:compile
-11817, org.geotools.xsd:gt-xsd-gml3:jar:15.1:compile
-11817, org.geotools.xsd:gt-xsd-ows:jar:15.1:compile
-11817, org.geotools.xsd:gt-xsd-wfs:jar:15.1:compile
-org.hsqldb:hsqldb:jar:2.3.0:compile
-org.jdom:jdom:jar:1.1.3:compile
-org.joda:joda-convert:jar:1.6:compile
-10631, org.json4s:json4s-ast_2.11:jar:3.2.10:compile
-10631, org.json4s:json4s-core_2.11:jar:3.2.10:compile
-10631, org.json4s:json4s-ext_2.11:jar:3.2.10:compile
-10631, org.json4s:json4s-native_2.11:jar:3.2.10:compile
-org.objenesis:objenesis:jar:1.0:compile
-org.parboiled:parboiled-core:jar:1.1.7:compile
-org.parboiled:parboiled-scala_2.11:jar:1.1.7:compile
-org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.4:compile
-org.scala-lang.modules:scala-xml_2.11:jar:1.0.5:compile
-8531, org.scala-lang:scala-compiler:jar:2.11.7:compile
-8531, org.scala-lang:scala-library:jar:2.11.7:compile
-8531, org.scala-lang:scalap:jar:2.11.7:compile
-8531, org.scala-lang:scala-reflect:jar:2.11.7:compile
-org.scalatra.rl:rl_2.11:jar:0.4.10:compile
-org.scalatra:scalatra_2.11:jar:2.3.0:compile
-org.scalatra:scalatra-auth_2.11:jar:2.3.0:compile
-org.scalatra:scalatra-common_2.11:jar:2.3.0:compile
-org.scalatra:scalatra-json_2.11:jar:2.3.0:compile
-org.scalatra:scalatra-swagger_2.11:jar:2.3.0:compile
-org.slf4j:slf4j-api:jar:1.7.5:compile
-org.slf4j:slf4j-log4j12:jar:1.7.5:compile
-org.tukaani:xz:jar:1.0:compile
-picocontainer:picocontainer:jar:1.2:compile
-
-12068, com.google.gson_2.7.0.*.jar
-
-#CQ8190 Apache Tomcat Version: 7.0.53
-javax.websocket-1.0.0.*.jar (No CQ found)
-8190, org.apache.catalina-7.0.53.*.jar
-8190, org.apache.catalina.ha-7.0.53.*.jar
-8190, org.apache.catalina.tribes-7.0.53.*.jar
-8190, org.apache.coyote-7.0.53.*.jar
-8190, org.apache.el-7.0.53.*.jar
-8190, org.apache.jasper-7.0.53.*.jar
-8190, org.apache.juli.extras-7.0.53.*.jar
-8190, org.apache.tomcat.api-7.0.53.*.jar
-8190, org.apache.tomcat.util-7.0.53.*.jar
-8190, org.apache.tomcat.websocket-7.0.53.*.jar
-
-#CQ8512 Apache Tomcat Version: 7.0.55
-8512, org.apache.catalina-7.0.55.*.jar
-8512, org.apache.catalina.ha-7.0.55.*.jar
-8512, org.apache.catalina.tribes-7.0.55.*.jar
-8512, org.apache.coyote-7.0.55.*.jar
-8512, org.apache.el-7.0.55.*.jar
-8512, org.apache.jasper-7.0.55.*.jar
-8512, org.apache.juli.extras-7.0.55.*.jar
-8512, org.apache.tomcat.api-7.0.55.*.jar
-8512, org.apache.tomcat.util-7.0.55.*.jar
-8512, org.apache.tomcat.websocket-7.0.55.*.jar
-
-#CQ8831 Apache Tomcat 7.0.56
-javax.websocket_1.1.0.*.jar
-8831, org.apache.tomcat.websocket-7.0.56.*.jar
-
-#CQ9557 Apache Tomcat 7.0.61
-9557, org.apache.catalina-7.0.61.*.jar
-9557, org.apache.catalina.ha-7.0.61.*.jar
-9557, org.apache.catalina.tribes-7.0.61.*.jar
-9557, org.apache.coyote-7.0.61.*.jar
-9557, org.apache.el-7.0.61.*.jar
-9557, org.apache.jasper-7.0.61.*.jar
-9557, org.apache.juli.extras-7.0.61.*.jar
-9557, org.apache.tomcat.api-7.0.61.*.jar
-9557, org.apache.tomcat.util-7.0.61.*.jar
-9557, org.apache.tomcat.websocket-7.0.61.*.jar
-
-#CQ9159 Apache Tomcat 8.0.18
-javax.el_3.0.0.*.jar
-javax.servlet_3.1.0.*.jar
-javax.servlet.jsp_2.3.0.*.jar
-9159, org.apache.catalina_8.0.18.*.jar
-9159, org.apache.catalina.ha_8.0.18.*.jar
-9159, org.apache.catalina.tribes_8.0.18.*.jar
-9159, org.apache.coyote-8.0.18.*.jar
-9159, org.apache.el-8.0.18.*.jar
-9159, org.apache.jasper-8.0.18.*.jar
-9159, org.apache.juli-8.0.18.*.jar
-9159, org.apache.tomcat.api-8.0.18.*.jar
-9159, org.apache.tomcat.jni-8.0.18.*.jar
-9159, org.apache.tomcat.util.scan-8.0.18.*.jar
-9159, org.apache.tomcat.util_8.0.18.*.jar
-9159, org.apache.tomcat.websocket-8.0.18.*.jar
-
-#CQ9450 Apache Tomcat 8.0.21
-9450, org.apache.catalina_8.0.21.*.jar
-9450, org.apache.catalina.ha_8.0.21.*.jar
-9450, org.apache.catalina.tribes_8.0.21.*.jar
-9450, org.apache.coyote-8.0.21.*.jar
-9450, org.apache.el-8.0.21.*.jar
-9450, org.apache.jasper-8.0.21.*.jar
-9450, org.apache.juli-8.0.21.*.jar
-9450, org.apache.tomcat.api-8.0.21.*.jar
-9450, org.apache.tomcat.jni-8.0.21.*.jar
-9450, org.apache.tomcat.util.scan-8.0.21.*.jar
-9450, org.apache.tomcat.util_8.0.21.*.jar
-9450, org.apache.tomcat.websocket-8.0.21.*.jar
-
-#CQ11956 Apache Tomcat 8.5.5
-11956, javax.security.auth.message-1.1.0.*.jar
-11956, org.apache.catalina-8.5.5.*.jar
-11956, org.apache.catalina.ha_8.5.5.*.jar
-11956, org.apache.catalina.tribes_8.5.5.*.jar
-11956, org.apache.coyote-8.5.5.*.jar
-11956, org.apache.el-8.5.5.*.jar
-11956, org.apache.jasper-8.5.5.*.jar
-11956, org.apache.juli-8.5.5.*.jar
-11956, org.apache.tomcat.api-8.5.5.*.jar
-11956, org.apache.tomcat.jni-8.5.5.*.jar
-11956, org.apache.tomcat.util.scan_8.5.5.*.jar
-11956, org.apache.tomcat.util-8.5.5.*.jar
-11956, org.apache.tomcat.websocket-8.5.5.*.jar
-
-#CQ12536 Apache Tomcat 8.5.11
-12536, org.apache.catalina-8.5.11.*.jar
-12536, org.apache.catalina.ha_8.5.11.*.jar
-12536, org.apache.catalina.tribes_8.5.11.*.jar
-12536, org.apache.coyote-8.5.11.*.jar
-12536, org.apache.el-8.5.11.*.jar
-12536, org.apache.jasper-8.5.11.*.jar
-12536, org.apache.juli-8.5.11.*.jar
-12536, org.apache.tomcat.api-8.5.11.*.jar
-12536, org.apache.tomcat.jni-8.5.11.*.jar
-12536, org.apache.tomcat.util.scan_8.5.11.*.jar
-12536, org.apache.tomcat.util-8.5.11.*.jar
-12536, org.apache.tomcat.websocket-8.5.11.*.jar
-
-11878, javaewah_1.1.6.*.jar
-
-12695, org.apache.commons.codec_1.9.0.*.jar
-12563, com.google.guava_21.0.0.*.jar
-
-jacocoagent.jar (No CQ found)
-
-11822, org.jacoco.agent_0.7.7.*.jar
-12641, org.jacoco.agent_0.7.9.*.jar
-11820, org.jacoco.core_0.7.7.*.jar
-12637, org.jacoco.core_0.7.9.*.jar
-11821, org.jacoco.report_0.7.7.*.jar
-12639, org.jacoco.report_0.7.9.*.jar
-11861, org.objectweb.asm.commons_5.1.0.*.jar
-12453, org.objectweb.asm.commons_5.2.0.*.jar
-11861, org.objectweb.asm.tree_5.1.0.*.jar
-12457, org.objectweb.asm.tree_5.2.0.*.jar
-12453, org.objectweb.asm_5.2.0.*.jar
-
-11943, slf4j.api_1.7.21.jar
-9927, usb4java-javax_1.2.0.*.jar
-11774, org.apache.camel.camel-core-osgi_2.17.2.jar
-11944, slf4j.log4j12_1.7.21.jar
-12003, jcl.over.slf4j_1.7.21.jar
-7833, com.codeminders.hidapi_1.1.0.jar
-9734, org.usb4java_1.2.0.*.jar
-11776, org.apache.camel.camel-kura_2.17.2.jar
-12262, minimal-json_0.9.4.jar
-12140, org.apache.commons.exec_1.3.0.jar
-11774, org.apache.camel.camel-core_2.17.2.jar
-11777, org.apache.camel.camel-stream_2.17.2.jar
-11952, slf4j.jdk14_1.7.21.jar
-12189, org.mockito.mockito-core_1.10.19.jar
-12230, org.objenesis_2.4.0.jar
-
-11157, sqlite-jdbc-3.7.2-javadoc.jar
-11157, sqlite-jdbc-3.7.2.*.jar
-11157, org.sqlite.jdbc.source_3.7.2.*.jar
-11157, org.sqlite.jdbc_3.7.2.*.jar
-11159, jaxen-1.1.6.*.jar
-11158, jdom-2.0.6.*.jar
-11214, jgrapht-core-0.9.0.*.jar
-11162, ojalgo-39.0.jar
-11162, org.ojalgo.source_39.0.0.*.jar
-11162, org.ojalgo_39.0.0.*.jar
-
-11213, org.jenetics-3.0.1-javadoc.jar
-11213, org.jenetics-3.0.1-sources.jar
-11213, org.jenetics-3.0.1.*.jar
-11213, org.jenetics.source_3.0.1.*.jar
-11213, org.jenetics_3.0.1.*.jar
-11214, org.jgrapht.source_0.9.0.*.jar
-11214, org.jgrapht_0.9.0.*.jar
-
-12470, com.ibm.icu.base_58.2.0.*.jar
-12470, com.ibm.icu.base.source_58.2.0.*.jar
-12037, com.github.jnr.posix_3.0.29.*.jar
-
-12036, com.github.jnr.jffi.native_1.2.11.*.jar
-
-12055, com.fasterxml.jackson.datatype.jackson-datatype-guava_2.6.2.v20161117-2150.jar
-12032, com.github.jnr.unixsocket_0.12.0.v20161107-2054.jar
-12054, com.fasterxml.jackson.jaxrs.jackson-jaxrs-base_2.6.2.v20161117-2150.jar
-12036, com.github.jnr.jffi_1.2.11.v20170113-1843.jar
-12057, com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider_2.6.2.v20161117-2150.jar
-12033, com.github.jnr.constants_0.9.1.v20161107-2054.jar
-12034, com.github.jnr.enxio_0.12.0.v20161107-2054.jar
-12035, com.github.jnr.ffi_2.0.9.v20161107-2054.jar
-13165, com.gradleware.tooling.client_0.19.0.v20170412105839.jar
-13165, com.gradleware.tooling.model_0.19.0.v20170412105839.jar
-13165, com.gradleware.tooling.utils_0.19.0.v20170412105839.jar
-12470, com.ibm.icu.source_58.2.0.v20170418-1837.jar
-12470, com.ibm.icu_58.2.0.v20170418-1837.jar
-12480, com.jcraft.jsch.source_0.1.54.v20170116-1932.jar
-9291, com.sun.jna_4.1.0.v20170410-1117.jar
-9292, com.sun.jna.platform_4.1.0.v20170410-1117.jar
-12750, org.apache.ant.source_1.10.1.v20170504-0840.jar
-12750, org.apache.ant_1.10.1.v20170504-0840.jar
-12537, org.apache.batik.css.source_1.8.0.v20170214-1941.jar
-12537, org.apache.batik.css_1.8.0.v20170214-1941.jar
-12538, org.apache.batik.util.gui.source_1.8.0.v20170214-1941.jar
-12538, org.apache.batik.util.source_1.8.0.v20170214-1941.jar
-12538, org.apache.batik.util.gui_1.8.0.v20170214-1941.jar
-12538, org.apache.batik.util_1.8.0.v20170214-1941.jar
-2478, org.apache.batik.ext.awt.extension_1.7.0.v201703152011.jar
-2478, org.apache.batik.ext.awt.extension.source_1.7.0.v201703152011.jar
-12051, org.apache.commons.fileupload_1.3.2.v20170320-2229.jar
-10496, org.apache.derby.source_10.11.1.1_v201605202053.jar
-12533, org.apache.felix.scr_2.0.8.v20170123-2104.jar
-12533, org.apache.felix.scr.source_2.0.8.v20170123-2104.jar
-12594, org.apache.httpcomponents.httpclient.win_4.5.2.v20170410-1149.jar
-12566, org.apache.httpcomponents.httpcore_4.4.6.v20170210-0925.jar
-12566, org.apache.httpcomponents.httpcore.source_4.4.6.v20170210-0925.jar
-12060, org.apache.lucene.analyzers-common_6.1.0.v20161115-1612.jar
-12060, org.apache.lucene.analyzers-common.source_6.1.0.v20161115-1612.jar
-12061, org.apache.lucene.analyzers-smartcn_6.1.0.v20161115-1612.jar
-12061, org.apache.lucene.analyzers-smartcn.source_6.1.0.v20161115-1612.jar
-12024, org.apache.lucene.core_6.1.0.v20161115-1612.jar
-12024, org.apache.lucene.core.source_6.1.0.v20161115-1612.jar
-12062, org.apache.lucene.misc_6.1.0.v20161115-1612.jar
-12062, org.apache.lucene.misc.source_6.1.0.v20161115-1612.jar
-12063, org.apache.lucene.queryparser_6.1.0.v20161115-1612.jar
-13012, org.apache.maven.resolver.api_1.0.3.v20170405-0725.jar
-13013, org.apache.maven.resolver.connector.basic_1.0.3.v20170405-0725.jar
-13014, org.apache.maven.resolver.impl_1.0.3.v20170405-0725.jar
-13015, org.apache.maven.resolver.spi_1.0.3.v20170405-0725.jar
-13016, org.apache.maven.resolver.transport.file_1.0.3.v20170405-0725.jar
-13017, org.apache.maven.resolver.transport.http_1.0.3.v20170405-0725.jar
-13018, org.apache.maven.resolver.util_1.0.3.v20170405-0725.jar
-
-12122, com.spotify.docker.client_3.6.8.*.jar
-12122, com.spotify.docker.client.source_3.6.8.*.jar
-10883, org.glassfish.hk2.api_2.5.0.*.jar
-10887, org.glassfish.hk2.locator_2.5.0.*.jar
-10889, org.glassfish.hk2.osgi-resource-locator_2.5.0.*.jar
-10885, org.glassfish.hk2.utils_2.5.0.*.jar
-10865, org.glassfish.jersey.apache.connector_2.22.1.*.jar
-10862, org.glassfish.jersey.bundles.repackaged.jersey-guava_2.22.1.*.jar
-10862, org.glassfish.jersey.core.jersey-client_2.22.1.*.jar
-10862, org.glassfish.jersey.core.jersey-common_2.22.1.*.jar
-10862, org.glassfish.jersey.core.jersey-server_2.22.1.*.jar
-10870, org.glassfish.jersey.ext.entityfiltering_2.22.1.*.jar
-10872, org.glassfish.jersey.media.jersey-media-json-jackson_2.22.1.*.jar
-12366, org.objectweb.asm.analysis_5.1.0.*.jar
-12459, org.objectweb.asm.analysis_5.2.0.*.jar
-12366, org.objectweb.asm.util_5.1.0.*.jar
-12458, org.objectweb.asm.util_5.2.0.*.jar
-
-eclipse.jdt, ecj-*.jar
-eclipse.jdt, ecjsrc-*.jar
-13358, org.apache.felix.scr_2.0.10.*.jar
-13358, org.apache.felix.scr.source_2.0.10.*.jar
-9941, org.tukaani.xz_1.5.0.*.jar
-9941, org.tukaani.xz.source_1.5.0.*.jar
-
-13412, com.amazonaws:jmespath-java:1.11.92
-9246, com.esotericsoftware:kryo-shaded:3.0.3
-
-10420, com.ibm.icu.base.source_56.1.0.*.jar
-11986, org.apache.felix.scr_2.0.6.*.jar
-
-rt.ecf, com.mycorp.examples.*
-12419, com.spotify.docker.client_6.1.1.v20170301-1624.jar
-ee4j.eclipselink, javax.persistence_*.jar
-13164, org.gradle.toolingapi_3.5.0.v20170412105839.jar
-11911, org.sonatype.m2e.mavenarchiver_0.17.2.201606141937-signed-20160830073346.jar
-org.w3c.dom.svg.extension_1.1.0.v20170523205.jar
-org.w3c.dom.svg.extension.source_1.1.0.v201705232305.jar
-birt, uk.co.spudsoft.birt.emitters.excel_*.jar
-birt, uk.co.spudsoft.birt.emitters.excel.source_*.jar
-
-11986, org.apache.felix.scr_2.0.6.v20161206-1638.jar
-
-6132, org.w3c.dom.svg.fragment_1.1.0.*.jar
-
-11998, aopalliance:aopalliance:jar:1.0:compile
-12855, ch.qos.logback:logback-classic:jar:1.1.8:compile
-12854, ch.qos.logback:logback-core:jar:1.1.8:compile
-11768, com.allen-sauer.gwt.log:gwt-log:jar:3.1.8:compile
-13194, com.extjs:gxt:jar:2.2.5:compile
-13604, com.fasterxml.jackson.core:jackson-annotations:jar:2.6.3:compile
-13502, com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile
-13170, com.fasterxml.jackson.core:jackson-core:jar:2.8.6:compile
-13503, com.fasterxml.jackson.core:jackson-databind:jar:2.8.6:compile
-13173, com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.6:compile
-13172, com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.6:compile
-13171,com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.6:compile
-13520, com.github.spullara.mustache.java:compiler:jar:0.9.3:compile
-13390, com.google.code.findbugs:annotations:jar:2.0.1:compile
-13078, com.google.code.gson:gson:jar:2.7:compile
-11995, com.google.guava:guava:jar:19.0:compile
-11737, com.google.inject:guice:jar:4.1.0:compile
-11966, com.h2database:h2:jar:1.4.192:compile
-13034, commons-beanutils:commons-beanutils:jar:1.9.2:compile
-13132, commons-cli:commons-cli:jar:1.4:compile
-11727, commons-codec:commons-codec:jar:1.9:compile
-13438, commons-collections:commons-collections:jar:3.2.1:compile
-11734, commons-configuration:commons-configuration:jar:1.9:compile
-11735, commons-fileupload:commons-fileupload:jar:1.3.2:compile
-11736, commons-io:commons-io:jar:2.4:compile
-13036, commons-lang:commons-lang:jar:2.6:compile
-13500, commons-logging:commons-logging:jar:1.1.3:compile
-13291, commons-logging:commons-logging:jar:1.2:compile
-13299, commons-net:commons-net:jar:3.5:compile
-11751, com.opencsv:opencsv:jar:3.7:compile
-13297, com.sun.xml.bind:jaxb-core:jar:2.2.11:compile
-11741 com.sun.xml.bind:jaxb-impl:jar:2.2.5:compile
-13195, com.tdunning:t-digest:jar:3.0:compile
-11767, io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
-13511, io.netty:netty-buffer:jar:4.1.7.Final:compile
-13515, io.netty:netty-codec-http:jar:4.1.7.Final:compile
-13512, io.netty:netty-codec:jar:4.1.7.Final:compile
-13516, io.netty:netty-common:jar:4.1.7.Final:compile
-13517, io.netty:netty-handler:jar:4.1.7.Final:compile
-13510, io.netty:netty:jar:3.10.6.Final:compile
-13518, io.netty:netty-resolver:jar:4.1.7.Final:compile
-13519, io.netty:netty-transport:jar:4.1.7.Final:compile
-13287, io.swagger:swagger-annotations:jar:1.5.12:compile
-13302, io.swagger:swagger-core:jar:1.5.12:compile
-13303, io.swagger:swagger-jaxrs:jar:1.5.12:compile
-13304, io.swagger:swagger-jersey2-jaxrs:jar:1.5.12:compile
-13305, io.swagger:swagger-models:jar:1.5.12:compile
-13197, javax.annotation:javax.annotation-api:jar:1.2:compile
-11749, javax.inject:javax.inject:jar:1:compile
-11743, javax.servlet:javax.servlet-api:jar:3.1.0:compile
-245, javax.servlet:servlet-api:jar:2.3:compile
-11732, javax.validation:validation-api:jar:1.1.0.Final:compile
-13199, javax.ws.rs:javax.ws.rs-api:jar:2.0.1:compile
-11988, joda-time:joda-time:jar:2.9.4:compile
-11742, junit:junit:jar:4.11:compile
-13505, net.java.dev.jna:jna:jar:4.2.2:compile
-13174, net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile
-
-13263, org.apache.activemq:activemq-all:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-amqp:jar:5.14.5:compile
-13450, org.apache.activemq:activemq-broker:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-camel:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-client:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-console:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-http:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-jaas:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-jdbc-store:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-jms-pool:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-kahadb-store:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-leveldb-store:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-log4j-appender:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-mqtt:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-openwire-legacy:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-partition:jar:5.14.5:compile
-13450, org.apache.activemq:activemq-pool:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-run:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-runtime-config:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-shiro:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-spring:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-stomp:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-web-console:war:5.14.5:compile
-13263, org.apache.activemq:activemq-web-demo:war:5.14.5:compile
-13263, org.apache.activemq:activemq-web:jar:5.14.5:compile
-13263, org.apache.activemq:apache-activemq:tar.gz:bin:5.14.5:compile
-
-13088, org.apache.activemq.protobuf:activemq-protobuf:jar:1.1:compile
-4727, org.apache.ant:ant:jar:1.8.2:compile
-4727, org.apache.ant:ant-launcher:jar:1.8.2:compile
-11029, org.apache.commons:commons-pool2:jar:2.3:compile
-
-13200, org.apache.geronimo.specs:geronimo-j2ee-management_1.1_spec:jar:1.0.1:compile
-11993, org.apache.camel:camel-core:jar:2.16.3:compile
-11994, org.apache.camel:camel-jms:jar:2.16.3:compile
-13032, org.apache.camel:camel-spring:jar:2.16.3:compile
-
-9623, org.apache.commons:commons-lang3:jar:3.4:compile
-3035, org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.1.1:compile
-5537, org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec:jar:2.0.0:compile
-3662, org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:compile
-1427, org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:1.0.1:compile
-13506, org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile
-12825, org.apache.httpcomponents:httpclient:jar:4.5.2:compile
-13292, org.apache.httpcomponents:httpcore:jar:4.4.4:compile
-13508, org.apache.httpcomponents:httpcore:jar:4.4.5:compile
-13509, org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile
-13564, org.apache.logging.log4j:log4j-api:jar:2.8.2:compile
-13565, org.apache.logging.log4j:log4j-to-slf4j:jar:2.8.2:compile
-13175, org.apache.lucene:lucene-analyzers-common:jar:6.4.1:compile
-13176, org.apache.lucene:lucene-backward-codecs:jar:6.4.1:compile
-13177, org.apache.lucene:lucene-core:jar:6.4.1:compile
-13178, org.apache.lucene:lucene-grouping:jar:6.4.1:compile
-13179, org.apache.lucene:lucene-highlighter:jar:6.4.1:compile
-13180, org.apache.lucene:lucene-join:jar:6.4.1:compile
-13181, org.apache.lucene:lucene-memory:jar:6.4.1:compile
-13182, org.apache.lucene:lucene-misc:jar:6.4.1:compile
-13183, org.apache.lucene:lucene-queries:jar:6.4.1:compile
-13184, org.apache.lucene:lucene-queryparser:jar:6.4.1:compile
-13185, org.apache.lucene:lucene-sandbox:jar:6.4.1:compile
-13188, org.apache.lucene:lucene-spatial3d:jar:6.4.1:compile
-13186, org.apache.lucene:lucene-spatial-extras:jar:6.4.1:compile
-13187, org.apache.lucene:lucene-spatial:jar:6.4.1:compile
-13189, org.apache.lucene:lucene-suggest:jar:6.4.1:compile
-13600, org.apache.poi:poi:jar:3.11:compile
-12555, org.apache.qpid:proton-j:jar:0.16.0:compile
-11761, org.apache.sanselan:sanselan:jar:0.97-incubator:compile
-12794, org.apache.shiro:shiro-core:jar:1.3.2:compile
-11757, org.apache.shiro:shiro-web:jar:1.2.3:compile
-12796, org.apache.shiro:shiro-web:jar:1.3.2:compile
-8114, org.apache.taglibs:taglibs-standard-impl:jar:1.2.1:compile
-8113, org.apache.taglibs:taglibs-standard-spec:jar:1.2.1:compile
-11223, org.apache.tomcat.extras:tomcat-extras-juli-adapters:jar:8.0.33:compile
-11223, org.apache.tomcat.extras:tomcat-extras-juli:jar:8.0.33:compile
-12148, org.apache.tomcat:tomcat-servlet-api:jar:8.0.38:compile
-12148, org.apache.tomcat:tomcat:tar.gz:8.0.38:compile
-12148, org.apache.tomcat:tomcat-websocket-api:jar:8.0.38:compile
-6687, org.apache.velocity:velocity:jar:1.7:compile
-13385, org.apache.xbean:xbean-spring:jar:4.2:compile
-6924, org.apache.zookeeper:zookeeper:jar:3.4.5:compile
-10223, org.assertj:assertj-core:jar:3.2.0:compile
-rt.jetty, org.eclipse.jetty.aggregate:*:*:*:compile
-rt.jetty, org.eclipse.jetty:*:*:*:compile
-rt.jetty, org.eclipse.jetty.orbit:*:*:*:compile
-rt.jetty, org.eclipse.jetty.toolchain:*:*:*:compile
-rt.jetty, org.eclipse.jetty.websocket:*:*:*:compile
-iot.kapua, org.eclipse.kapua:*:*:*:compile
-iot.eclipsescada, org.eclipse.neoscada.utils:*:*:*:compile
-iot.paho, org.eclipse.paho:*:*:*:compile
-ee4j.eclipselink, org.eclipse.persistence:*:*:*:compile
-13190, org.elasticsearch.client:*:*:5.3.0:compile
-13191, org.elasticsearch:securesm:jar:1.1:compile
-13101, org.fusesource.hawtbuf:*:*:1.11:compile
-13313, org.fusesource.hawtdispatch:*:*:1.22:compile
-13314, org.fusesource.hawtdispatch:hawtdispatch-transport:jar:1.22:compile
-13312, org.fusesource.mqtt-client:mqtt-client:jar:1.14:compile
-13274, org.glassfish.hk2.external:aopalliance-repackaged:jar:2.5.0-b05:compile
-13277, org.glassfish.hk2.external:javax.inject:jar:2.5.0-b05:compile
-10883, org.glassfish.hk2:hk2-api:jar:2.5.0-b05:compile
-13279, org.glassfish.hk2:hk2-locator:jar:2.5.0-b05:compile
-10885, org.glassfish.hk2:hk2-utils:jar:2.5.0-b05:compile
-10889, org.glassfish.hk2:osgi-resource-locator:jar:1.0.1:compile
-8679, org.glassfish:javax.json:jar:1.0.4:compile
-13272, org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.23.2:compile
-11968, org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.23.2:compile
-13267, org.glassfish.jersey.core:jersey-client:jar:2.23.2:compile
-13268, org.glassfish.jersey.core:jersey-common:jar:2.23.2:compile
-13269, org.glassfish.jersey.core:jersey-server:jar:2.23.2:compile
-13270, org.glassfish.jersey.ext:jersey-entity-filtering:jar:2.23.2:compile
-13271, org.glassfish.jersey.media:jersey-media-jaxb:jar:2.23.2:compile
-11983, org.glassfish.jersey.media:jersey-media-moxy:jar:2.23.2:compile
-13294, org.glassfish.jersey.media:jersey-media-multipart:jar:2.1:compile
-2027, org.hamcrest:hamcrest-core:jar:1.1:compile
-7063, org.hamcrest:hamcrest-core:jar:1.3:compile
-13192, org.hdrhistogram:HdrHistogram:jar:2.1.6:compile
-9727, org.javassist:javassist:jar:3.19.0-GA:compile
-11207, org.jolokia:jolokia-core:jar:1.3.3:compile
-13090, org.jolokia:jolokia-jvm:jar:agent:1.3.4:compile
-13296, org.jvnet.mimepull:mimepull:jar:1.8:compile
-10111, org.osgi:org.osgi.compendium:jar:4.3.1:compile
-10111, org.osgi:org.osgi.core:jar:4.3.1:compile
-9857, org.ow2.asm:asm:jar:5.0.4:compile
-11251, org.reflections:reflections:jar:0.9.10:compile
-13406, org.slf4j:jcl-over-slf4j:jar:1.7.24:compile
-13405, org.slf4j:jul-to-slf4j:jar:1.7.24:compile
-13407, org.slf4j:log4j-over-slf4j:jar:1.7.24:compile
-12851, org.slf4j:slf4j-api:jar:1.7.21:compile
-11971, org.springframework.security:spring-security-core:jar:4.1.3.RELEASE:compile
-11393, org.springframework:spring-aop:jar:4.1.9.RELEASE:compile
-11894, org.springframework:spring-aop:jar:4.3.2.RELEASE:compile
-11394, org.springframework:spring-beans:jar:4.1.9.RELEASE:compile
-13400, org.springframework:spring-beans:jar:4.3.2.RELEASE:compile
-11395, org.springframework:spring-context:jar:4.1.9.RELEASE:compile
-13401, org.springframework:spring-context:jar:4.3.2.RELEASE:compile
-13402, org.springframework:spring-core:jar:4.3.2.RELEASE:compile
-13501, org.springframework:spring-expression:jar:4.3.2.RELEASE:compile
-13396, org.springframework:spring-jms:jar:4.1.9.RELEASE:compile
-13397, org.springframework:spring-messaging:jar:4.1.9.RELEASE:compile
-13398, org.springframework:spring-tx:jar:4.1.9.RELEASE:compile
-10925, org.springframework:spring-web:jar:4.1.8.RELEASE:compile
-10926, org.springframework:spring-webmvc:jar:4.1.8.RELEASE:compile
-13102, org.yaml:snakeyaml:jar:1.15:compile
-3274, rome:rome:jar:1.0:compile
-4023, stax:stax-api:jar:1.0.1:compile
-9620, xerces:xercesImpl:jar:2.11.0:compile
-1635, xerces:xmlParserAPIs:jar:2.6.2:compile
-9621, xml-apis:xml-apis:jar:1.4.01:compile
-1155, xmlpull:xmlpull:jar:1.1.3.1:compile
-6229, xpp3:xpp3:jar:1.1.4:compile
-6229, xpp3:xpp3_min:jar:1.1.4:compile
-9858, com.googlecode.json-simple:json-simple:jar:1.1.1:compile
-7795, javax.jmdns:jmdns:jar:3.4.1:compile
-10385, commons-collections:commons-collections:jar:3.2.2:compile
-10828, com.google.protobuf:protobuf-java:jar:2.6.1:compile
-7635, commons-daemon:commons-daemon:jar:1.0.15:compile
-1112, commons-logging:commons-logging:jar:1.1:compile
-9591, com.thoughtworks.xstream:xstream:jar:1.4.9:compile
-1803, jdom:jdom:jar:1.0:compile
-
- io.netty:netty:jar:3.7.0.Final:compile
- activesoap:jaxp-api:jar:1.3:compile
- avalon-framework:avalon-framework:jar:4.1.3:compile
- com.carrotsearch:hppc:jar:0.7.1:compile
- info.cukes:cucumber-core:jar:1.2.4:compile
- info.cukes:cucumber-guice:jar:1.2.4:compile
- info.cukes:cucumber-html:jar:0.2.3:compile
- info.cukes:cucumber-java:jar:1.2.4:compile
- info.cukes:cucumber-junit:jar:1.2.4:compile
- info.cukes:cucumber-jvm-deps:jar:1.0.5:compile
- info.cukes:gherkin:jar:2.12.2:compile
- io.fabric8.insight:insight-log4j:jar:1.2.0.Beta4:compile
- io.fabric8.insight:insight-log-core:jar:1.2.0.Beta4:compile
- jline:jline:jar:0.9.94:compile
- jrms:jrms:jar:1.1:compile
- logkit:logkit:jar:1.0.1:compile
- org.apache.activemq:activeio-core:jar:3.1.4:compile
- org.apache.felix:org.apache.felix.scr.annotations:jar:1.9.8:compile
- org.apache.geronimo.specs:geronimo-jacc_1.1_spec:jar:1.0.1:compile
- org.apache.hadoop:hadoop-core:jar:1.0.0:compile
- org.apache.servicemix.bundles:org.apache.servicemix.bundles.josql:jar:1.5_5:compile
- org.apache.shiro:shiro-spring:jar:1.2.4:compile
- org.bitbucket.b_c:jose4j:jar:0.5.2:compile
- org.codehaus.jettison:jettison:jar:1.3.8:compile
- org.elasticsearch.client:rest:jar:5.3.0:compile
- org.fusesource.hawtjni:hawtjni-runtime:jar:1.9:compile
- org.fusesource.leveldbjni:leveldbjni:jar:1.8:compile
- org.iq80.leveldb:leveldb-api:jar:0.6:compile
- org.iq80.leveldb:leveldb:jar:0.6:compile
- org.iq80.snappy:snappy:jar:0.2:compile
- org.jasypt:jasypt:jar:1.9.2:compile
- org.jasypt:jasypt-spring31:jar:1.9.2:compile
- org.json:json:jar:20090211:compile
- org.jvnet.jaxb2_commons:jaxb2-basics-runtime:jar:0.6.4:compile
- org.linkedin:org.linkedin.util-core:jar:1.4.0:compile
- org.linkedin:org.linkedin.util-groovy:jar:1.7.1:compile
- org.linkedin:org.linkedin.zookeeper-impl:jar:1.4.0:compile
- org.liquibase:liquibase-core:jar:3.0.5:compile
- org.mortbay.jasper:apache-el:jar:8.0.9.M3:compile
- org.mortbay.jasper:apache-jsp:jar:8.0.9.M3:compile
- org.ops4j.pax.url:pax-url-aether:jar:2.4.3:compile
- org.scala-lang:scala-library:jar:2.11.0:compile
- org.slf4j:jul-to-slf4j:jar:1.5.8:compile
- org.xerial.snappy:snappy-java:jar:1.1.2:compile
- org.springframework:spring-oxm:jar:4.1.9.RELEASE:compile
-
-8777, edu.uci.ics.jung_1.0.0.20160527-1200.jar
-8779, org.apache.commons.collections15_1.0.0.20160527-1200.jar
-
-12659, org.apache.commons.codec_1.9.0.*.jar
-12567, org.apache.httpcomponents.httpclient_4.5.2.*.jar
-
-aopalliance:aopalliance:1.0
-ar.com.hjg:pngj:2.0.1
-asm:asm:3.1
-asm:asm:3.3.1
-cglib:cglib-nodep:2.2
-com.101tec:zkclient:0.3
-com.amazonaws:aws-java-sdk-core:1.11.92
-com.amazonaws:aws-java-sdk-kms:1.11.92
-com.amazonaws:aws-java-sdk-s3:1.11.92
-com.amazonaws:jmespath-java:1.11.92
-com.aol.simplereact:cyclops-react:1.0.0-RC4
-com.beust:jcommander:1.32
-com.beust:jcommander:1.48
-com.clearspring.analytics:stream:2.9.0
-com.clearspring.analytics:stream:2.9.2
-com.datastax.cassandra:cassandra-driver-core:3.1.4
-com.esotericsoftware.kryo:kryo:2.21
-com.esotericsoftware:kryo-shaded:3.0.3
-com.esotericsoftware:minlog:1.3.0
-com.esotericsoftware.minlog:minlog:1.2
-com.esotericsoftware.reflectasm:reflectasm:1.07
-com.fasterxml.jackson.core:jackson-annotations:2.6.0
-com.fasterxml.jackson.core:jackson-annotations:2.8.0
-com.fasterxml.jackson.core:jackson-core:2.6.6
-com.fasterxml.jackson.core:jackson-core:2.8.7
-com.fasterxml.jackson.core:jackson-databind:2.6.6
-com.fasterxml.jackson.core:jackson-databind:2.8.7
-com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.6.6
-com.github.jnr:jffi:1.2.10
-com.github.jnr:jnr-constants:0.9.0
-com.github.jnr:jnr-ffi:2.0.7
-com.github.jnr:jnr-posix:3.0.27
-com.github.jnr:jnr-x86asm:1.0.2
-com.github.julien-truffaut:monocle-core_2.11:1.4.0
-com.github.julien-truffaut:monocle-macro_2.11:1.4.0
-com.github.stephenc.findbugs:findbugs-annotations:1.3.9-1
-com.github.tminglei:slick-pg_2.11:0.14.6
-com.github.tminglei:slick-pg_core_2.11:0.14.6
-com.googlecode.efficient-java-matrix-library:core:0.26
-com.google.code.findbugs:annotations:3.0.1
-com.google.code.findbugs:jsr305:3.0.1
-com.google.code.gson:gson:2.2.4
-com.google.code.gson:gson:2.3.1
-com.google.guava:guava:14.0.1
-com.google.guava:guava:14.0-rc1
-com.google.guava:guava:16.0.1
-com.google.guava:guava:17.0
-com.google.inject.extensions:guice-servlet:3.0
-com.google.inject:guice:3.0
-com.google.protobuf:protobuf-java:2.5.0
-com.google.protobuf:protobuf-java:3.2.0
-com.google.uzaygezen:uzaygezen-core:0.2
-com.h2database:h2:1.1.119
-com.jayway.jsonpath:json-path:2.0.0
-com.jsuereth:scala-arm_2.11:2.0
-com.lihaoyi:fastparse_2.11:0.4.2
-com.lihaoyi:fastparse-utils_2.11:0.4.2
-com.lihaoyi:sourcecode_2.11:0.1.3
-com.lmax:disruptor:3.3.0
-com.lowagie:itext:2.1.5
-commons-beanutils:commons-beanutils:1.9.3
-commons-beanutils:commons-beanutils-core:1.8.0
-commons-cli:commons-cli:1.2
-commons-codec:commons-codec:1.4
-commons-codec:commons-codec:1.9
-commons-collections:commons-collections:3.2.2
-commons-configuration:commons-configuration:1.6
-commons-dbcp:commons-dbcp:1.4
-commons-digester:commons-digester:1.8
-commons-el:commons-el:1.0
-commons-fileupload:commons-fileupload:1.2.1
-commons-httpclient:commons-httpclient:3.1
-commons-io:commons-io:2.1
-commons-io:commons-io:2.4
-commons-jxpath:commons-jxpath:1.3
-commons-lang:commons-lang:2.4
-commons-lang:commons-lang:2.6
-commons-logging:commons-logging:1.2
-commons-net:commons-net:3.1
-commons-net:commons-net:3.3
-commons-pool:commons-pool:1.5.4
-com.networknt:json-schema-validator:0.1.7
-com.nurkiewicz.asyncretry:asyncretry:0.0.7
-com.opencsv:opencsv:3.9
-com.spatial4j:spatial4j:0.4.1
-com.sun.jersey.contribs:jersey-guice:1.9
-com.sun.jersey:jersey-client:1.9
-com.sun.jersey:jersey-core:1.9
-com.sun.jersey:jersey-json:1.9
-com.sun.jersey:jersey-server:1.9
-com.sun.jersey.jersey-test-framework:jersey-test-framework-grizzly2:1.9
-com.sun.xml.bind:jaxb-impl:2.2.3-1
-com.thoughtworks.paranamer:paranamer:2.7
-com.thoughtworks.xstream:xstream:1.4.7
-com.trueaccord.lenses:lenses_2.11:0.4.10
-com.trueaccord.scalapb:scalapb-runtime_2.11:0.6.0-pre1
-com.typesafe:config:1.2.1
-com.typesafe:config:1.3.1
-com.typesafe.scala-logging:scala-logging_2.11:3.5.0
-com.typesafe.slick:slick_2.11:3.1.1
-com.vividsolutions:jts:1.13
-com.vividsolutions:jts-core:1.14.0
-com.yammer.metrics:metrics-core:2.2.0
-de.javakaffee:kryo-serializers:0.38
-io.dropwizard.metrics:metrics-core:3.1.2
-io.javaslang:javaslang:2.0.2
-io.javaslang:javaslang-match:2.0.2
-io.netty:netty:3.7.0.Final
-io.netty:netty-all:4.0.23.Final
-io.spray:spray-json_2.11:1.3.3
-10604,it.geosolutions.imageio-ext:*:1.1.13
-it.geosolutions.imageio-ext:imageio-ext-gdal-bindings:1.9.2
-it.geosolutions.jaiext.*:*:1.0.9
-it.unimi.dsi:fastutil:6.5.7
-3932, javax.activation:activation:1.1
-javax.inject:javax.inject:1
-javax.media:jai_codec:1.1.3
-javax.media:jai_core:1.1.3
-javax.media:jai_imageio:1.1
-javax.servlet.jsp:jsp-api:2.1
-javax.xml.bind:jaxb-api:2.2.2
-javax.xml.stream:stax-api:1.0-2
-jgridshift:jgridshift:1.0
-jline:jline:2.11
-joda-time:joda-time:2.3
-joda-time:joda-time:2.8.1
-jp.ne.opt:chronoscala_2.11:0.1.2
-junit:junit:4.12
-log4j:log4j:1.2.17
-mil.nga.giat:geowave-adapter-raster:0.9.3
-mil.nga.giat:geowave-adapter-vector:0.9.3
-mil.nga.giat:geowave-core-cli:0.9.3
-mil.nga.giat:geowave-core-geotime:0.9.3
-mil.nga.giat:geowave-core-index:0.9.3
-mil.nga.giat:geowave-core-ingest:0.9.3
-mil.nga.giat:geowave-core-mapreduce:0.9.3
-mil.nga.giat:geowave-core-store:0.9.3
-mil.nga.giat:geowave-datastore-accumulo:0.9.3
-7583, net.java.dev.jsr-275:jsr-275:1.0-beta-2
-net.jcip:jcip-annotations:1.0
-net.jpountz.lz4:lz4:1.2.0
-net.minidev:asm:1.0.2
-net.minidev:json-smart:2.1.1
-net.sf.ehcache:ehcache:1.6.2
-net.sf.ezmorph:ezmorph:1.0.6
-net.sf.geographiclib:GeographicLib-Java:1.44
-net.sf.jopt-simple:jopt-simple:3.2
-net.sf.json-lib:json-lib:2.2.3
-org.agrona:Agrona:0.4.13
-11816, org.apache.accumulo:*:1.7.2
-org.apache.avro:avro:1.8.1
-org.apache.avro:avro-ipc:1.7.6
-org.apache.avro:avro-mapred:1.7.6
-org.apache.commons:commons-compress:1.8.1
-org.apache.commons:commons-csv:1.0
-org.apache.commons:commons-lang3:3.5
-org.apache.commons:commons-math:2.1
-org.apache.commons:commons-math:2.2
-org.apache.commons:commons-math3:3.6.1
-org.apache.commons:commons-pool2:2.2
-org.apache.commons:commons-pool2:2.4.2
-org.apache.commons:commons-vfs2:2.1
-10300, org.apache.curator:*:2.7.1
-org.apache.directory.api:api-asn1-api:1.0.0-M20
-org.apache.directory.api:api-util:1.0.0-M20
-org.apache.directory.server:apacheds-i18n:2.0.0-M15
-org.apache.directory.server:apacheds-kerberos-codec:2.0.0-M15
-org.apache.hadoop:hadoop-annotations:2.7.3
-org.apache.hadoop:hadoop-auth:2.7.3
-org.apache.hadoop:hadoop-client:2.7.3
-org.apache.hadoop:hadoop-common:2.7.3
-org.apache.hadoop:hadoop-hdfs:2.7.3
-org.apache.hadoop:hadoop-mapreduce-client-app:2.7.3
-org.apache.hadoop:hadoop-mapreduce-client-common:2.7.3
-org.apache.hadoop:hadoop-mapreduce-client-core:2.7.3
-org.apache.hadoop:hadoop-mapreduce-client-hs:2.2.0
-org.apache.hadoop:hadoop-mapreduce-client-jobclient:2.7.3
-org.apache.hadoop:hadoop-mapreduce-client-shuffle:2.7.3
-org.apache.hadoop:hadoop-minicluster:2.2.0
-org.apache.hadoop:hadoop-yarn-api:2.7.3
-org.apache.hadoop:hadoop-yarn-client:2.7.3
-org.apache.hadoop:hadoop-yarn-common:2.7.3
-org.apache.hadoop:hadoop-yarn-server-common:2.7.3
-org.apache.hadoop:hadoop-yarn-server-nodemanager:2.7.3
-org.apache.hadoop:hadoop-yarn-server-resourcemanager:2.2.0
-org.apache.hadoop:hadoop-yarn-server-tests:2.2.0
-org.apache.hadoop:hadoop-yarn-server-web-proxy:2.2.0
-org.apache.hbase:hbase-annotations:1.3.0
-org.apache.hbase:hbase-client:1.3.0
-org.apache.hbase:hbase-common:1.3.0
-org.apache.hbase:hbase-hadoop-compat:1.3.0
-org.apache.hbase:hbase-prefix-tree:1.3.0
-org.apache.hbase:hbase-procedure:1.3.0
-org.apache.hbase:hbase-protocol:1.3.0
-org.apache.hbase:hbase-server:1.3.0
-org.apache.htrace:htrace-core:3.1.0-incubating
-org.apache.httpcomponents:httpclient:4.2.5
-org.apache.httpcomponents:httpclient:4.5.2
-org.apache.httpcomponents:httpcore:4.2.4
-org.apache.httpcomponents:httpcore:4.4.4
-org.apache.kafka:kafka_2.11:0.8.2.1
-org.apache.kafka:kafka-clients:0.8.2.1
-org.apache.thrift:libthrift:0.9.1
-org.apache.velocity:velocity:1.7
-
-2944, org.apache.xmlgraphics:batik-anim:1.7
-2928, org.apache.xmlgraphics:batik-awt-util:1.7
-2945, org.apache.xmlgraphics:batik-bridge:1.7
-2941, org.apache.xmlgraphics:batik-css:1.7
-2487, org.apache.xmlgraphics:batik-dom:1.7
-2940, org.apache.xmlgraphics:batik-ext:1.7
-2479, org.apache.xmlgraphics:batik-gvt:1.7
-org.apache.xmlgraphics:batik-js:1.7
-2486, org.apache.xmlgraphics:batik-parser:1.7
-3754, org.apache.xmlgraphics:batik-script:1.7
-6491, org.apache.xmlgraphics:batik-svg-dom:1.7
-7639, org.apache.xmlgraphics:batik-svggen:1.7
-3808, org.apache.xmlgraphics:batik-transcoder:1.7
-2485, org.apache.xmlgraphics:batik-util:1.7
-2491, org.apache.xmlgraphics:batik-xml:1.7
-
-org.apache.xml:xml-commons-resolver:1.2
-org.apache.zookeeper:zookeeper:3.4.6
-org.bouncycastle:bcprov-jdk15on:1.54
-org.calrissian.mango:mango-core:1.2.0
-org.codehaus.jackson:jackson-core-asl:1.9.13
-org.codehaus.jackson:jackson-jaxrs:1.9.13
-org.codehaus.jackson:jackson-mapper-asl:1.9.13
-org.codehaus.jackson:jackson-xc:1.9.13
-org.codehaus.jettison:jettison:1.1
-org.eclipse.emf:common:2.6.0
-org.eclipse.emf:ecore:2.6.1
-org.eclipse.xsd:xsd:2.6.0
-org.freemarker:freemarker:2.3.18
-org.fusesource.leveldbjni:leveldbjni-all:1.8
-org.geoserver:gs-main:2.10.0
-org.geoserver:gs-ows:2.10.0
-org.geoserver:gs-platform:2.10.0
-org.geoserver:gs-wfs:2.10.0
-org.geoserver:gs-wms:2.10.0
-13411, org.geotools:*:16.1
-10648, org.geotools:*:14.1
-11817, org.geotools:*:15.1
-8530, org.geotools:*:11.2
-org.hamcrest:hamcrest-core:1.3
-org.hdrhistogram:HdrHistogram:2.1.7
-org.hsqldb:hsqldb:2.3.0
-org.jaitools:jt-attributeop:1.4.0
-org.jaitools:jt-contour:1.4.0
-org.jaitools:jt-rangelookup:1.4.0
-org.jaitools:jt-utils:1.4.0
-org.jaitools:jt-vectorbinarize:1.4.0
-org.jaitools:jt-vectorize:1.4.0
-org.jaitools:jt-zonalstats:1.4.0
-org.jamon:jamon-runtime:2.4.1
-org.jasypt:jasypt:1.8
-org.javassist:javassist:3.20.0-GA
-org.jdom:jdom:1.1.3
-org.joda:joda-convert:1.6
-org.jooq:jool:0.9.11
-org.jruby.jcodings:jcodings:1.0.8
-org.jruby.joni:joni:2.1.2
-org.locationtech.sfcurve:sfcurve-api_2.11:0.2.0
-org.locationtech.sfcurve:sfcurve-zorder_2.11:0.2.0
-org.mortbay.jetty:jetty:6.1.26
-org.mortbay.jetty:jetty-sslengine:6.1.26
-org.mortbay.jetty:jetty-util:6.1.26
-org.mortbay.jetty:jsp-2.1:6.1.14
-org.mortbay.jetty:jsp-api-2.1:6.1.14
-org.objenesis:objenesis:1.2
-org.objenesis:objenesis:2.1
-org.ow2.asm:asm:4.0
-org.ow2.asm:asm:5.0.3
-org.ow2.asm:asm-analysis:5.0.3
-org.ow2.asm:asm-commons:5.0.3
-org.ow2.asm:asm-tree:5.0.3
-org.ow2.asm:asm-util:5.0.3
-org.parboiled:parboiled-core:1.1.7
-org.parboiled:parboiled-scala_2.11:1.1.7
-org.pcollections:pcollections:2.1.2
-org.postgresql:postgresql:9.4-1201-jdbc41
-org.reactivestreams:reactive-streams:1.0.0
-org.scalactic:scalactic_2.11:3.0.1
-org.scalaj:scalaj-http_2.11:2.3.0
-org.scala-lang.modules:scala-java8-compat_2.11:0.7.0
-org.scala-lang.modules:scala-parser-combinators_2.11:1.0.5
-org.scala-lang.modules:scala-xml_2.11:1.0.6
-org.scala-lang:scala-reflect:2.11.11
-org.scalatest:scalatest_2.11:3.0.1
-org.scalaz:scalaz-concurrent_2.11:7.2.7
-org.scalaz:scalaz-core_2.11:7.2.8
-org.scalaz:scalaz-effect_2.11:7.2.7
-org.scalaz.stream:scalaz-stream_2.11:0.8.6a
-org.scodec:scodec-bits_2.11:1.1.2
-org.slf4j:slf4j-api:1.7.21
-13368, org.slf4j:slf4j-api:1.7.25
-org.slf4j:slf4j-ext:1.7.25
-org.slf4j:slf4j-log4j12:1.6.1
-org.slf4j:slf4j-log4j12:1.7.10
-org.sonatype.sisu.inject:cglib:2.2.1-v20090111
-org.spire-math:spire_2.11:0.13.0
-org.spire-math:spire-macros_2.11:0.11.0
-org.spire-math:spire-macros_2.11:0.13.0
-12338, org.springframework.security:spring-security-config:4.0.4
-12338, org.springframework.security:spring-security-core:4.0.4
-12338, org.springframework.security:spring-security-web:4.0.4
-11949, org.springframework:spring-aop:4.2.4
-11626, org.springframework:spring-beans:4.2.4
-11627, org.springframework:spring-context:4.2.4
-10967, org.springframework:spring-context-support:4.2.4
-10968, org.springframework:spring-core:4.2.4
-10969, org.springframework:spring-expression:4.2.4
-10970, org.springframework:spring-jdbc:4.2.4
-11637, org.springframework:spring-tx:4.2.4
-11633, org.springframework:spring-web:4.2.4
-10979, org.springframework:spring-webmvc:4.2.4
-9941, org.tukaani:xz:1.5
-11690, org.typelevel:machinist_2.11:0.4.1
-13418, org.typelevel:machinist_2.11:0.6.1
-org.typelevel:macro-compat_2.11:1.1.1
-org.xerial.snappy:snappy-java:1.1.1.3
-org.xerial.snappy:snappy-java:1.1.1.6
-picocontainer:picocontainer:1.2
-software.amazon.ion:ion-java:1.0.2
-tomcat:jasper-compiler:5.5.23
-tomcat:jasper-runtime:5.5.23
-xalan:xalan:2.6.0
-xerces:xercesImpl:2.9.1
-xml-apis:xml-apis:1.3.04
-xml-apis:xml-apis-ext:1.3.04
-xmlenc:xmlenc:0.52
-xmlpull:xmlpull:1.1.3.1
-xmlunit:xmlunit:1.3
-xpp3:xpp3:1.1.3.4.O
-xpp3:xpp3_min:1.1.4c
-
-com.gradleware.tooling.client_0.10.0*.jar
-11083, com.gradleware.tooling.client_0.11.0*.jar
-11265, com.gradleware.tooling.client_0.12.0*.jar
-11608, com.gradleware.tooling.client_0.13.0*.jar
-11841, com.gradleware.tooling.client_0.14.0*.jar
-11906, com.gradleware.tooling.client_0.15.0*.jar
-11922, com.gradleware.tooling.client_0.16.0*.jar
-com.gradleware.tooling.client_0.17.0*.jar
-com.gradleware.tooling.client_0.18.0*.jar
-com.gradleware.tooling.client_0.20.0*.jar
-com.gradleware.tooling.client_0.4.0*.jar
-com.gradleware.tooling.client_0.5.0*.jar
-com.gradleware.tooling.client_0.6.0*.jar
-com.gradleware.tooling.client_0.6.1*.jar
-com.gradleware.tooling.client_0.7.0*.jar
-com.gradleware.tooling.client_0.8.0*.jar
-com.gradleware.tooling.client_0.8.1*.jar
-com.gradleware.tooling.client_0.9.0*.jar
-com.gradleware.tooling.model_0.10.0*.jar
-11084, com.gradleware.tooling.model_0.11.0*.jar
-11266, com.gradleware.tooling.model_0.12.0*.jar
-11609, com.gradleware.tooling.model_0.13.0*.jar
-11840, com.gradleware.tooling.model_0.14.0*.jar
-11905, com.gradleware.tooling.model_0.15.0*.jar
-11921, com.gradleware.tooling.model_0.16.0*.jar
-com.gradleware.tooling.model_0.17.0*.jar
-com.gradleware.tooling.model_0.20.0*.jar
-com.gradleware.tooling.model_0.4.0*.jar
-com.gradleware.tooling.model_0.5.0*.jar
-com.gradleware.tooling.model_0.6.0*.jar
-com.gradleware.tooling.model_0.6.1*.jar
-com.gradleware.tooling.model_0.7.0*.jar
-com.gradleware.tooling.model_0.8.0*.jar
-com.gradleware.tooling.model_0.8.1*.jar
-com.gradleware.tooling.model_0.9.0*.jar
-com.gradleware.tooling.utils_0.10.0*.jar
-11082, com.gradleware.tooling.utils_0.11.0*.jar
-11267, com.gradleware.tooling.utils_0.12.0*.jar
-11607, com.gradleware.tooling.utils_0.13.0*.jar
-11842, com.gradleware.tooling.utils_0.14.0*.jar
-11907, com.gradleware.tooling.utils_0.15.0*.jar
-11923, com.gradleware.tooling.utils_0.16.0*.jar
-12318, com.gradleware.tooling.*_0.17.0*.jar
-12772, com.gradleware.tooling.*_0.18.0*.jar
-com.gradleware.tooling.utils_0.20.0*.jar
-com.gradleware.tooling.utils_0.4.0*.jar
-com.gradleware.tooling.utils_0.5.0*.jar
-com.gradleware.tooling.utils_0.6.0*.jar
-com.gradleware.tooling.utils_0.6.1*.jar
-com.gradleware.tooling.utils_0.7.0*.jar
-com.gradleware.tooling.utils_0.8.0*.jar
-com.gradleware.tooling.utils_0.8.1*.jar
-com.gradleware.tooling.utils_0.9.0*.jar
-org.gradle.toolingapi_2.10.0*.jar
-org.gradle.toolingapi_2.11.0*.jar
-org.gradle.toolingapi_2.12.0*.jar
-11264, org.gradle.toolingapi_2.13.0*.jar
-11604, org.gradle.toolingapi_2.14.0*.jar
-org.gradle.toolingapi_2.14.1*.jar
-org.gradle.toolingapi_2.5.0*.jar
-org.gradle.toolingapi_2.6.0*.jar
-org.gradle.toolingapi_2.7.0*.jar
-org.gradle.toolingapi_2.9.0*.jar
-11838, org.gradle.toolingapi_3.0.0*.jar
-12317, org.gradle.toolingapi_3.3.0*.jar
-12767, org.gradle.toolingapi_3.4.0*.jar
-org.slf4j.simple_1.7.2*.jar
-
- activesoap:jaxp-api:jar:1.3:compile
-11998, aopalliance:aopalliance:jar:1.0:compile
- c3p0:c3p0:jar:0.9.1.1:compile
-12855, ch.qos.logback:logback-classic:jar:1.1.8:compile
-12854, ch.qos.logback:logback-core:jar:1.1.8:compile
-13194, com.carrotsearch:hppc:jar:0.7.1:compile
-13502, com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile
-13170, com.fasterxml.jackson.core:jackson-core:jar:2.8.6:compile
-13503, com.fasterxml.jackson.core:jackson-databind:jar:2.8.6:compile
-13173, com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.6:compile
-13172, com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.6:compile
-13171, com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.6:compile
-13520, com.github.spullara.mustache.java:compiler:jar:0.9.3:compile
-13390, com.google.code.findbugs:annotations:jar:2.0.1:compile
-13078, com.google.code.gson:gson:jar:2.7:compile
- com.googlecode.json-simple:json-simple:jar:1.1.1:compile
- com.google.guava:guava:jar:19.0:compile
- com.google.inject:guice:jar:4.1.0:compile
-11746, com.google.protobuf:protobuf-java:jar:2.6.1:compile
-11966, com.h2database:h2:jar:1.4.192:compile
-13979, com.ibm.jbatch:com.ibm.jbatch.container:jar:1.0.2:compile
-13981, com.ibm.jbatch:com.ibm.jbatch.spi:jar:1.0.2:compile
- commons-beanutils:commons-beanutils:jar:1.9.2:compile
- commons-cli:commons-cli:jar:1.4:compile
- commons-codec:commons-codec:jar:1.9:compile
- commons-collections:commons-collections:jar:3.2.1:compile
- commons-collections:commons-collections:jar:3.2.2:compile
- commons-configuration:commons-configuration:jar:1.9:compile
- commons-daemon:commons-daemon:jar:1.0.15:compile
- commons-io:commons-io:jar:2.4:compile
- commons-lang:commons-lang:jar:2.6:compile
- commons-logging:commons-logging:jar:1.1.3:compile
- commons-logging:commons-logging:jar:1.2:compile
- commons-net:commons-net:jar:3.5:compile
- com.sun.xml.bind:jaxb-core:jar:2.2.11:compile
- com.sun.xml.bind:jaxb-impl:jar:2.2.5:compile
-13195, com.tdunning:t-digest:jar:3.0:compile
- com.thoughtworks.xstream:xstream:jar:1.4.9:compile
-
-13507, info.cukes:cucumber-core:jar:1.2.4:compile
-13507, info.cukes:cucumber-guice:jar:1.2.4:compile
-13507, info.cukes:cucumber-html:jar:0.2.3:compile
-13507, info.cukes:cucumber-java:jar:1.2.4:compile
-13507, info.cukes:cucumber-junit:jar:1.2.4:compile
-13507, info.cukes:cucumber-jvm-deps:jar:1.0.5:compile
-13507, info.cukes:gherkin:jar:2.12.2:compile
-
- io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
- io.fabric8.insight:insight-log4j:jar:1.2.0.Beta4:compile
- io.fabric8.insight:insight-log-core:jar:1.2.0.Beta4:compile
- io.netty:netty-buffer:jar:4.1.7.Final:compile
- io.netty:netty-codec-http:jar:4.1.7.Final:compile
- io.netty:netty-codec:jar:4.1.7.Final:compile
- io.netty:netty-common:jar:4.1.7.Final:compile
- io.netty:netty-handler:jar:4.1.7.Final:compile
- io.netty:netty:jar:3.10.6.Final:compile
- io.netty:netty-resolver:jar:4.1.7.Final:compile
- io.netty:netty-transport:jar:4.1.7.Final:compile
-13287, io.swagger:swagger-annotations:jar:1.5.12:compile
-13302, io.swagger:swagger-core:jar:1.5.12:compile
-13303, io.swagger:swagger-jaxrs:jar:1.5.12:compile
-13304, io.swagger:swagger-jersey2-jaxrs:jar:1.5.12:compile
-13305, io.swagger:swagger-models:jar:1.5.12:compile
- javax.annotation:javax.annotation-api:jar:1.2:compile
- javax.batch:javax.batch-api:jar:1.0.1:compile
- javax.inject:javax.inject:jar:1:compile
- javax.jmdns:jmdns:jar:3.4.1:compile
- javax.servlet:javax.servlet-api:jar:3.1.0:compile
- javax.validation:validation-api:jar:1.1.0.Final:compile
- javax.ws.rs:javax.ws.rs-api:jar:2.0.1:compile
- jdom:jdom:jar:1.0:compile
- jline:jline:jar:0.9.94:compile
- joda-time:joda-time:jar:2.9.4:compile
- jrms:jrms:jar:1.1:compile
- junit:junit:jar:4.11:compile
- net.java.dev.jna:jna:jar:4.2.2:compile
- net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile
- org.apache.activemq:activeio-core:jar:3.1.4:compile
- org.apache.activemq:activemq-all:jar:5.14.5:compile
- org.apache.activemq:activemq-amqp:jar:5.14.5:compile
- org.apache.activemq:activemq-broker:jar:5.14.5:compile
- org.apache.activemq:activemq-camel:jar:5.14.5:compile
- org.apache.activemq:activemq-client:jar:5.14.5:compile
- org.apache.activemq:activemq-console:jar:5.14.5:compile
- org.apache.activemq:activemq-http:jar:5.14.5:compile
- org.apache.activemq:activemq-jaas:jar:5.14.5:compile
- org.apache.activemq:activemq-jdbc-store:jar:5.14.5:compile
- org.apache.activemq:activemq-jms-pool:jar:5.14.5:compile
- org.apache.activemq:activemq-kahadb-store:jar:5.14.5:compile
- org.apache.activemq:activemq-leveldb-store:jar:5.14.5:compile
- org.apache.activemq:activemq-log4j-appender:jar:5.14.5:compile
- org.apache.activemq:activemq-mqtt:jar:5.14.5:compile
- org.apache.activemq:activemq-openwire-legacy:jar:5.14.5:compile
- org.apache.activemq:activemq-partition:jar:5.14.5:compile
- org.apache.activemq:activemq-pool:jar:5.14.5:compile
- org.apache.activemq:activemq-run:jar:5.14.5:compile
- org.apache.activemq:activemq-runtime-config:jar:5.14.5:compile
- org.apache.activemq:activemq-shiro:jar:5.14.5:compile
- org.apache.activemq:activemq-spring:jar:5.14.5:compile
- org.apache.activemq:activemq-stomp:jar:5.14.5:compile
- org.apache.activemq:activemq-web-console:war:5.14.5:compile
- org.apache.activemq:activemq-web-demo:war:5.14.5:compile
- org.apache.activemq:activemq-web:jar:5.14.5:compile
- org.apache.activemq:apache-activemq:tar.gz:bin:5.14.5:compile
- org.apache.activemq.protobuf:activemq-protobuf:jar:1.1:compile
- org.apache.ant:ant:jar:1.8.1:compile
- org.apache.ant:ant-launcher:jar:1.8.1:compile
- org.apache.camel:camel-core:jar:2.16.3:compile
- org.apache.camel:camel-jms:jar:2.16.3:compile
- org.apache.camel:camel-spring:jar:2.16.3:compile
- org.apache.commons:commons-lang3:jar:3.4:compile
- org.apache.commons:commons-pool2:jar:2.3:compile
- org.apache.felix:org.apache.felix.scr.annotations:jar:1.9.8:compile
- org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.1.1:compile
- org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec:jar:2.0.0:compile
- org.apache.geronimo.specs:geronimo-j2ee-management_1.1_spec:jar:1.0.1:compile
- org.apache.geronimo.specs:geronimo-jacc_1.1_spec:jar:1.0.1:compile
- org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:compile
- org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:1.0.1:compile
- org.apache.hadoop:hadoop-core:jar:1.0.0:compile
- org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile
- org.apache.httpcomponents:httpclient:jar:4.5.2:compile
- org.apache.httpcomponents:httpcore:jar:4.4.4:compile
- org.apache.httpcomponents:httpcore:jar:4.4.5:compile
- org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile
- org.apache.logging.log4j:log4j-api:jar:2.8.2:compile
- org.apache.logging.log4j:log4j-to-slf4j:jar:2.8.2:compile
- org.apache.lucene:lucene-analyzers-common:jar:6.4.1:compile
- org.apache.lucene:lucene-backward-codecs:jar:6.4.1:compile
- org.apache.lucene:lucene-core:jar:6.4.1:compile
- org.apache.lucene:lucene-grouping:jar:6.4.1:compile
- org.apache.lucene:lucene-highlighter:jar:6.4.1:compile
- org.apache.lucene:lucene-join:jar:6.4.1:compile
- org.apache.lucene:lucene-memory:jar:6.4.1:compile
- org.apache.lucene:lucene-misc:jar:6.4.1:compile
- org.apache.lucene:lucene-queries:jar:6.4.1:compile
- org.apache.lucene:lucene-queryparser:jar:6.4.1:compile
- org.apache.lucene:lucene-sandbox:jar:6.4.1:compile
- org.apache.lucene:lucene-spatial3d:jar:6.4.1:compile
- org.apache.lucene:lucene-spatial-extras:jar:6.4.1:compile
- org.apache.lucene:lucene-spatial:jar:6.4.1:compile
- org.apache.lucene:lucene-suggest:jar:6.4.1:compile
- org.apache.qpid:proton-j:jar:0.16.0:compile
- org.apache.servicemix.bundles:org.apache.servicemix.bundles.josql:jar:1.5_5:compile
- org.apache.shiro:shiro-core:jar:1.3.2:compile
- org.apache.shiro:shiro-spring:jar:1.2.4:compile
- org.apache.shiro:shiro-web:jar:1.2.4:compile
- org.apache.shiro:shiro-web:jar:1.3.2:compile
- org.apache.taglibs:taglibs-standard-impl:jar:1.2.1:compile
- org.apache.taglibs:taglibs-standard-spec:jar:1.2.1:compile
- org.apache.tomcat.extras:tomcat-extras-juli-adapters:jar:8.0.41:compile
- org.apache.tomcat.extras:tomcat-extras-juli:jar:8.0.41:compile
- org.apache.tomcat:tomcat-servlet-api:jar:8.0.38:compile
- org.apache.tomcat:tomcat:tar.gz:8.0.41:compile
- org.apache.tomcat:tomcat-websocket-api:jar:8.0.38:compile
- org.apache.velocity:velocity:jar:1.7:compile
- org.apache.xbean:xbean-spring:jar:4.2:compile
- org.apache.zookeeper:zookeeper:jar:3.4.6:compile
- org.assertj:assertj-core:jar:3.2.0:compile
- org.bitbucket.b_c:jose4j:jar:0.5.2:compile
- org.codehaus.jettison:jettison:jar:1.3.8:compile
-eclipse.jdt, org.eclipse.jdt:*:*:*:*
-rt.jetty, org.eclipse.jetty.aggregate:*:*:*:*
-rt.jetty, org.eclipse.jetty:*:*:*:*
-rt.jetty, org.eclipse.jetty.orbit:*:*:*:*
-rt.jetty, org.eclipse.jetty.toolchain:*:*:*:*
-rt.jetty, org.eclipse.jetty.websocket:*:*:*:*
-iot.kapua, org.eclipse.kapua:*:*:*:*
-iot.eclipsescada, org.eclipse.neoscada.utils:*:*:*:*
-iot.paho, org.eclipse.paho:*:*:*:*
-ee4j.eclipselink, org.eclipse.persistence:*:*:*:*
- org.elasticsearch.client:rest:jar:5.3.0:compile
- org.elasticsearch.client:transport:jar:5.3.0:compile
- org.elasticsearch:elasticsearch:jar:5.3.0:compile
- org.elasticsearch.plugin:lang-mustache-client:jar:5.3.0:compile
- org.elasticsearch.plugin:percolator-client:jar:5.3.0:compile
- org.elasticsearch.plugin:reindex-client:jar:5.3.0:compile
- org.elasticsearch.plugin:transport-netty3-client:jar:5.3.0:compile
- org.elasticsearch.plugin:transport-netty4-client:jar:5.3.0:compile
- org.elasticsearch:securesm:jar:1.1:compile
- org.fusesource.hawtbuf:hawtbuf:jar:1.11:compile
- org.fusesource.hawtbuf:hawtbuf-proto:jar:1.11:compile
- org.fusesource.hawtdispatch:hawtdispatch:jar:1.22:compile
- org.fusesource.hawtdispatch:hawtdispatch-scala-2.11:jar:1.22:compile
- org.fusesource.hawtdispatch:hawtdispatch-transport:jar:1.22:compile
- org.fusesource.hawtjni:hawtjni-runtime:jar:1.9:compile
- org.fusesource.leveldbjni:leveldbjni:jar:1.8:compile
- org.fusesource.mqtt-client:mqtt-client:jar:1.14:compile
- org.glassfish.hk2.external:aopalliance-repackaged:jar:2.5.0-b05:compile
- org.glassfish.hk2.external:javax.inject:jar:2.5.0-b05:compile
- org.glassfish.hk2:hk2-api:jar:2.5.0-b05:compile
- org.glassfish.hk2:hk2-locator:jar:2.5.0-b05:compile
- org.glassfish.hk2:hk2-utils:jar:2.5.0-b05:compile
- org.glassfish.hk2:osgi-resource-locator:jar:1.0.1:compile
- org.glassfish:javax.json:jar:1.0.4:compile
- org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.23.2:compile
- org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.23.2:compile
- org.glassfish.jersey.core:jersey-client:jar:2.23.2:compile
- org.glassfish.jersey.core:jersey-common:jar:2.23.2:compile
- org.glassfish.jersey.core:jersey-server:jar:2.23.2:compile
- org.glassfish.jersey.ext:jersey-entity-filtering:jar:2.23.2:compile
- org.glassfish.jersey.media:jersey-media-jaxb:jar:2.23.2:compile
- org.glassfish.jersey.media:jersey-media-moxy:jar:2.23.2:compile
- org.glassfish.jersey.media:jersey-media-multipart:jar:2.1:compile
- org.hamcrest:hamcrest-core:jar:1.1:compile
- org.hamcrest:hamcrest-core:jar:1.3:compile
- org.hdrhistogram:HdrHistogram:jar:2.1.6:compile
- org.iq80.leveldb:leveldb-api:jar:0.6:compile
- org.iq80.leveldb:leveldb:jar:0.6:compile
- org.iq80.snappy:snappy:jar:0.2:compile
- org.jasypt:jasypt:jar:1.9.2:compile
- org.jasypt:jasypt-spring31:jar:1.9.2:compile
- org.javassist:javassist:jar:3.19.0-GA:compile
- org.jolokia:jolokia-core:jar:1.3.3:compile
- org.jolokia:jolokia-core:jar:1.3.4:compile
- org.jolokia:jolokia-jvm:jar:agent:1.3.4:compile
- org.json:json:jar:20090211:compile
- org.jvnet.jaxb2_commons:jaxb2-basics-runtime:jar:0.6.4:compile
-13296, org.jvnet.mimepull:mimepull:jar:1.8:compile
-11068, org.kohsuke.args4j_2.33.0.*.jar
-12554, com.mxgraph_3.0.0.7.jar
-11158, org.jdom2_2.0.6.*.jar
-11158, org.jdom2.source_2.0.6.*.jar
-13613, org.jenetics_3.8.0.*.jar
-13613, org.jenetics.source_3.8.0.*.jar
-
-13729, org.tukaani.xz_1.6.0.v20170629-1752.jar
-
-10061, com.eclipsesource.minimal-json:minimal-json:bundle:0.9.4
-10162, commons-logging:commons-logging:jar:1.2
-10385, commons-collections:commons-collections:jar:3.2.2
-10386, commons-collections:commons-collections:jar:3.2.2
-10828, com.google.protobuf:protobuf-java:bundle:2.6.1
-10836, commons-logging:commons-logging:jar:1.1.3
-11159, jaxen:jaxen:bundle:1.1.6
-11282, org.apache.maven.wagon:wagon-provider-api:jar:2.10
-11382, com.squareup.okio:okio:jar:1.6.0
-11383, org.apache.maven.archetype:archetype-catalog:jar:2.4
-11384, org.apache.maven.archetype:archetype-common:jar:2.4
-11385, org.apache.maven.archetype:archetype-descriptor:jar:2.4
-11386, org.apache.maven.archetype:archetype-registry:jar:2.4
-11390, com.squareup.okhttp:okhttp:jar:2.5.0
-11391, org.apache.maven.wagon:wagon-file:jar:2.10
-11393, org.codehaus.plexus:plexus-utils:jar:3.0.22
-11394, org.apache.maven:maven-aether-provider:jar:3.3.9
-11395, org.apache.maven:maven-artifact:jar:3.3.9
-11396, org.apache.maven:maven-builder-support:jar:3.3.9
-11397, org.apache.maven:maven-compat:jar:3.3.9
-11399, org.apache.maven:maven-core:jar:3.3.9
-11400, org.apache.maven:maven-embedder:jar:3.3.9
-11401, org.apache.maven:maven-model:jar:3.3.9
-11402, org.apache.maven:maven-model-builder:jar:3.3.9
-11403, org.apache.maven:maven-plugin-api:jar:3.3.9
-11404, org.apache.maven:maven-repository-metadata:jar:3.3.9
-11405, org.apache.maven:maven-settings:jar:3.3.9
-11406, org.apache.maven:maven-settings-builder:jar:3.3.9
-11408, org.codehaus.plexus:plexus-component-annotations:jar:1.6
-11532, com.github.jsonld-java:jsonld-java:bundle:0.8.3
-11713, org.apache.httpcomponents:httpclient:jar:4.5.2
-11714, org.apache.httpcomponents:httpclient-cache:jar:4.5.2
-11716, org.apache.httpcomponents:httpcore:jar:4.4.4
-11820, org.jacoco:org.jacoco.core:jar:0.7.7.201606060606
-11821, org.jacoco:org.jacoco.report:jar:0.7.7.201606060606
-11822, org.jacoco:org.jacoco.agent.rt:jar:0.7.7.201606060606
-12637, org.jacoco:org.jacoco.core:jar:0.7.9
-12639, org.jacoco:org.jacoco.report:jar:0.7.9
-1427, org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:${geronimoSpecsJtaVersion}
-1907, commons-logging:commons-logging:jar:1.1.1
-1907, commons-logging:commons-logging:jar:1.1.3
-1909, commons-collections:commons-collections:jar:3.2.1
-1909, commons-collections:commons-collections:jar:3.2.2
-2677, commons-io:commons-io:jar:1.4
-2678, commons-lang:commons-lang:jar:2.4
-2735, commons-lang:commons-lang:jar:2.4
-3035, org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.1.1
-3084, org.slf4j:slf4j-api:jar:1.5.6
-3274, rome:rome:jar:1.0
-4354, org.apache.openejb.patch:openejb-jstl:jar:1.2
-4578, commons-cli:commons-cli:jar:1.2
-4580, commons-cli:commons-cli:jar:1.2
-4581, org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
-4583, org.codehaus.plexus:plexus-interpolation:jar:1.14
-4591, org.apache.maven:maven-plugin-api:jar:3.0
-4600, org.sonatype.plexus:plexus-cipher:jar:1.4
-4601, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
-4648, org.apache.maven.indexer:indexer-artifact:jar:3.1.0
-4648, org.apache.maven.indexer:indexer-core:jar:3.1.0
-4790, commons-io:commons-io:jar:2.0.1
-4791, commons-io:commons-io:jar:2.0.1
-4911, org.codehaus.plexus:plexus-classworlds:jar:2.4
-4919, org.codehaus.plexus:plexus-utils:jar:2.0.6
-4925, org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6
-4941, org.sonatype.plexus:plexus-build-api:jar:0.0.7
-4970, commons-lang:commons-lang:jar:2.5
-5023, org.sonatype.aether:aether-api:jar:1.11
-5024, org.sonatype.aether:aether-impl:jar:1.11
-5026, org.sonatype.aether:aether-spi:jar:1.11
-5028, org.sonatype.aether:aether-util:jar:1.11
-5537, org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec:jar:2.0.0
-5601, commons-codec:commons-codec:jar:1.4
-5630, org.codehaus.plexus:plexus-utils:jar:2.1
-5646, org.sonatype.plexus:plexus-cipher:jar:1.7
-5647, org.apache.maven:maven-model-builder:jar:3.0.3
-5648, org.apache.maven:maven-model:jar:3.0.3
-5651, org.apache.maven:maven-repository-metadata:jar:3.0.3
-5652, org.apache.maven:maven-aether-provider:jar:3.0.3
-5804, com.google.guava:guava:jar:10.0.1
-6045, org.sonatype.aether:aether-api:jar:1.13.1
-6048, org.sonatype.aether:aether-impl:jar:1.13.1
-6049, org.sonatype.aether:aether-spi:jar:1.13.1
-6050, org.sonatype.aether:aether-util:jar:1.13.1
-6066, org.apache.maven:maven-aether-provider:jar:3.0.4
-6069, org.apache.maven:maven-core:jar:3.0.4
-6071, org.apache.maven:maven-model:jar:3.0.4
-6072, org.apache.maven:maven-model-builder:jar:3.0.4
-6073, org.apache.maven:maven-plugin-api:jar:3.0.4
-6074, org.apache.maven:maven-repository-metadata:jar:3.0.4
-6075, org.apache.maven:maven-settings:jar:3.0.4
-6076, org.apache.maven:maven-settings-builder:jar:3.0.4
-6081, javax.enterprise:cdi-api:jar:1.0
-6123, org.apache.commons:commons-lang3:jar:3.1
-6183, commons-lang:commons-lang:jar:2.6
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6450, commons-lang:commons-lang:jar:2.6
-6459, commons-beanutils:commons-beanutils:jar:1.8.3
-6754, org.antlr:antlr-runtime:jar:3.4
-6759, org.antlr:stringtemplate:jar:3.2.1
-6786, org.apache.commons:commons-exec:jar:1.1
-6789, commons-codec:commons-codec:jar:1.4
-6793, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6855, org.slf4j:slf4j-api:jar:1.7.2
-6862, org.eclipse.orbit.bundles:org.slf4j.api:eclipse-bundle-recipe:1.7.10
-7056, com.google.guava:guava:jar:11.0.2
-7148, org.jsoup:jsoup:jar:1.7.2
-7160, commons-codec:commons-codec:jar:1.6
-7207, org.jsoup:jsoup:jar:1.7.2
-7208, org.codehaus.plexus:plexus-interpolation:jar:1.16
-7209, org.apache.maven:maven-model:jar:3.1.0
-7210, org.apache.maven:maven-model-builder:jar:3.1.0
-7213, org.apache.maven:maven-repository-metadata:jar:3.1.0
-7214, org.apache.maven:maven-aether-provider:jar:3.1.0
-7225, commons-codec:commons-codec:jar:1.6
-7243, com.google.guava:guava:bundle:14.0.1
-7326, commons-collections:commons-collections:jar:3.2.1
-7351, javax.websocket:javax.websocket-api:bundle:1.0
-7386, javax.annotation:javax.annotation-api:jar:1.2
-7395, commons-io:commons-io:jar:2.2
-7568, com.sun.istack:istack-commons-runtime:jar:2.6.1
-7665, org.slf4j:slf4j-log4j12:jar:1.7.2
-7766, com.google.guava:guava:bundle:15.0
-7768, com.google.guava:guava:bundle:15.0
-7793, joda-time:joda-time:jar:2.3
-7795, javax.jmdns:jmdns:jar:3.4.1
-7816, org.eclipse.orion:org.yaml.snakeyaml:eclipse-plugin:1.14.0
-7837, log4j:log4j:bundle:1.2.17
-7946, org.codehaus.plexus:plexus-interpolation:jar:1.19
-7947, org.codehaus.plexus:plexus-utils:jar:3.0.15
-7947, org.codehaus.plexus:plexus-utils:jar:3.0.17
-7952, org.slf4j:slf4j-simple:jar:1.7.5
-7956, org.apache.maven.wagon:wagon-file:jar:2.6
-7957, org.apache.maven.wagon:wagon-provider-api:jar:2.6
-7959, org.apache.maven:maven-artifact:jar:3.2.1
-7963, org.apache.maven:maven-model:jar:3.2.1
-7965, org.apache.maven:maven-plugin-api:jar:3.2.1
-8294, commons-io:commons-io:jar:2.2
-8371, org.glassfish.jaxb:jaxb-xjc:jar:2.2.11.jbossorg-1
-8372, com.sun.istack:istack-commons-runtime:jar:2.21
-8372, org.glassfish.jaxb:jaxb-core:jar:2.2.11.jbossorg-1
-8414, com.thoughtworks.xstream:xstream:jar:1.4.7
-8425, org.eclipse.orion:org.apache.oltu.oauth2.client:eclipse-plugin:1.0.0
-8425, org.eclipse.orion:org.apache.oltu.oauth2.common:eclipse-plugin:1.0.0
-8813, org.codehaus.plexus:plexus-classworlds:bundle:2.5.2
-8934, org.apache.httpcomponents:httpclient:jar:4.3.6
-8938, org.apache.httpcomponents:httpcore:jar:4.3.3
-9060, ch.qos.logback:logback-core:jar:1.1.2
-9061, ch.qos.logback:logback-classic:jar:1.1.2
-9081, org.apache.commons:commons-lang3:jar:3.3.2
-9085, com.google.guava:guava:bundle:18.0
-9127, org.eclipse.orbit.bundles:org.slf4j.api:eclipse-bundle-recipe:1.7.10
-9217, commons-codec:commons-codec:jar:1.10
-9218, commons-io:commons-io:jar:2.4
-9282, org.codehaus.plexus:plexus-interpolation:jar:1.21
-9283, org.codehaus.plexus:plexus-utils:jar:3.0.20
-9284, org.codehaus.plexus:plexus-velocity:jar:1.1.8
-9456, javax.ws.rs:javax.ws.rs-api:jar:2.0.1
-9476, commons-io:commons-io:jar:2.2
-9483, org.apache.maven.shared:maven-invoker:jar:2.1.1
-9623, org.apache.commons:commons-lang3:jar:3.4
-9858, com.googlecode.json-simple:json-simple:bundle:1.1.1
-9859, com.beust:jcommander:jar:1.48
-
-12219, com.fasterxml.jackson.core:jackson-annotations:jar:2.8.2:compile
-12218, com.fasterxml.jackson.core:jackson-core:jar:2.8.2:compile
-12220, com.fasterxml.jackson.core:jackson-databind:jar:2.8.2:compile
-12221, com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.8.2:compile
-9858, com.googlecode.json-simple:json-simple:jar:1.1.1:compile
-12329, com.google.guava:guava:jar:20.0:compile
-13617, com.networknt:json-schema-validator:jar:0.1.7:compile
- com.squareup.moshi:moshi:jar:1.2.0:compile
- com.squareup.okhttp3:logging-interceptor:jar:3.5.0:compile
- com.squareup.okhttp3:okhttp:jar:3.5.0:compile
- com.squareup.retrofit2:converter-moshi:jar:2.1.0:compile
- com.squareup.retrofit2:retrofit:jar:2.1.0:compile
-13496, com.squareup.okio:okio:jar:1.11.0:compile
-12614, io.netty:*:jar:4.1.8.Final:compile
-rt.vertx, io.vertx:*:jar:*:compile
-13653, org.apache.commons:commons-lang3:jar:3.5:compile
-iot.unide, org.eclipse.iot.unide.ppmp:*:jar:*:compile
-13578, org.influxdb:influxdb-java:jar:2.5:compile
-
-Oct 26, 2017 11:07:35 AM org.apache.commons.vfs2.impl.StandardFileSystemManager info
-INFO: Using "/tmp/vfs_cache" as temporary files store.
-9060, ch.qos.logback:logback-core:jar:1.1.2
-9060, ch.qos.logback:logback-core:jar:1.1.2
-10162, commons-logging:commons-logging:jar:1.2
-10162, commons-logging:commons-logging:jar:1.2
-3264, commons-jxpath:commons-jxpath:jar:1.3
-9061, ch.qos.logback:logback-classic:jar:1.1.2
-9061, ch.qos.logback:logback-classic:jar:1.1.2
-1909, commons-collections:commons-collections:jar:3.2.2
-10386, commons-collections:commons-collections:jar:3.2.2
-10385, commons-collections:commons-collections:jar:3.2.2
-10385, commons-collections:commons-collections:jar:3.2.2
-7454, commons-io:commons-io:jar:2.1
-7454, commons-io:commons-io:jar:2.1
-9085, com.google.guava:guava:bundle:18.0
-9085, com.google.guava:guava:bundle:18.0
-9859, com.beust:jcommander:jar:1.48
-9859, com.beust:jcommander:jar:1.48
-6183, commons-lang:commons-lang:jar:2.6
-6450, commons-lang:commons-lang:jar:2.6
-6183, commons-lang:commons-lang:jar:2.6
-
-10702, gson-2.4.jar
-11332, guice-multibindings-4.0.jar
-8958, compress-lzf-1.0.3.jar
-12397, HikariCP-2.4.2.jar
-14179, javax.servlet-api-3.1.0.jar
-8998,j jul-to-slf4j-1.7.5.jar
-13075, lz4-1.3.0.jar
-10772, commons-pool-1.5.4.jar
-12393, javax.json-1.0.4.jar
-8995, hsqldb-2.3.0.jar
-12398, slf4j-api-1.7.5.jar
-
-10772, commons-pool-1.5.4.jar
-11352, com.noelios.restlet-1.0.8.jar
-11349, com.noelios.restlet.ext.jetty-1.0.8.jar
-11350, com.noelios.restlet.ext.servlet-1.0.8.jar
-8958, compress-lzf-1.0.3.jar
-10702, gson-2.4.jar
-11332, guice-multibindings-4.0.jar
-12397, HikariCP-2.4.2.jar
-8995, hsqldb-2.3.0.jar
-10139, jansi-1.11.jar
-12393, javax.json-1.0.4.jar
-14179, javax.servlet-api-3.1.0.jar
-8998, jul-to-slf4j-1.7.5.jar
-13075, lz4-1.3.0.jar
-11352, org.restlet-1.0.8.jar
-11353, org.restlet.ext.fileupload-1.0.8.jar
-14651, postgresql-42.1.1.jar
-11215, postgresql-9.4-1201-jdbc41.jar
-11347, servlet-api-2.5-6.1.5.jar
-12398, slf4j-api-1.7.5.jar
-sqlite-jdbc-3.20.0.jar
-
-11185, com.google.javascript_0.0.20160315.*.jar
-
-10061, com.eclipsesource.minimal-json:minimal-json:bundle:0.9.4
-10162, commons-logging:commons-logging:jar:1.2
-10385, commons-collections:commons-collections:jar:3.2.2
-10386, commons-collections:commons-collections:jar:3.2.2
-10828, com.google.protobuf:protobuf-java:bundle:2.6.1
-10836, commons-logging:commons-logging:jar:1.1.3
-11159, jaxen:jaxen:bundle:1.1.6
-11282, org.apache.maven.wagon:wagon-provider-api:jar:2.10
-11382, com.squareup.okio:okio:jar:1.6.0
-11383, org.apache.maven.archetype:archetype-catalog:jar:2.4
-11384, org.apache.maven.archetype:archetype-common:jar:2.4
-11385, org.apache.maven.archetype:archetype-descriptor:jar:2.4
-11386, org.apache.maven.archetype:archetype-registry:jar:2.4
-11390, com.squareup.okhttp:okhttp:jar:2.5.0
-11391, org.apache.maven.wagon:wagon-file:jar:2.10
-11393, org.codehaus.plexus:plexus-utils:jar:3.0.22
-11394, org.apache.maven:maven-aether-provider:jar:3.3.9
-11395, org.apache.maven:maven-artifact:jar:3.3.9
-11396, org.apache.maven:maven-builder-support:jar:3.3.9
-11397, org.apache.maven:maven-compat:jar:3.3.9
-11399, org.apache.maven:maven-core:jar:3.3.9
-11400, org.apache.maven:maven-embedder:jar:3.3.9
-11401, org.apache.maven:maven-model:jar:3.3.9
-11402, org.apache.maven:maven-model-builder:jar:3.3.9
-11403, org.apache.maven:maven-plugin-api:jar:3.3.9
-11404, org.apache.maven:maven-repository-metadata:jar:3.3.9
-11405, org.apache.maven:maven-settings:jar:3.3.9
-11406, org.apache.maven:maven-settings-builder:jar:3.3.9
-11408, org.codehaus.plexus:plexus-component-annotations:jar:1.6
-11532, com.github.jsonld-java:jsonld-java:bundle:0.8.3
-11713, org.apache.httpcomponents:httpclient:jar:4.5.2
-11714, org.apache.httpcomponents:httpclient-cache:jar:4.5.2
-11716, org.apache.httpcomponents:httpcore:jar:4.4.4
-11820, org.jacoco:org.jacoco.core:jar:0.7.7.201606060606
-11821, org.jacoco:org.jacoco.report:jar:0.7.7.201606060606
-12637, org.jacoco:org.jacoco.core:jar:0.7.9
-12639, org.jacoco:org.jacoco.report:jar:0.7.9
-1427, org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:${geronimoSpecsJtaVersion}
-1907, commons-logging:commons-logging:jar:1.1.1
-1909, commons-collections:commons-collections:jar:3.2.2
-2677, commons-io:commons-io:jar:1.4
-2678, commons-lang:commons-lang:jar:2.4
-2735, commons-lang:commons-lang:jar:2.4
-3035, org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.1.1
-3084, org.slf4j:slf4j-api:jar:1.5.6
-3274, rome:rome:jar:1.0
-4354, org.apache.openejb.patch:openejb-jstl:jar:1.2
-4578, commons-cli:commons-cli:jar:1.2
-4580, commons-cli:commons-cli:jar:1.2
-4581, org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
-4583, org.codehaus.plexus:plexus-interpolation:jar:1.14
-4591, org.apache.maven:maven-plugin-api:jar:3.0
-4600, org.sonatype.plexus:plexus-cipher:jar:1.4
-4601, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
-4648, org.apache.maven.indexer:indexer-artifact:jar:3.1.0
-4648, org.apache.maven.indexer:indexer-core:jar:3.1.0
-4790, commons-io:commons-io:jar:2.0.1
-4911, org.codehaus.plexus:plexus-classworlds:jar:2.4
-4919, org.codehaus.plexus:plexus-utils:jar:2.0.6
-4925, org.apache.maven.wagon:wagon-provider-api:jar:1.0
-4925, org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6
-4941, org.sonatype.plexus:plexus-build-api:jar:0.0.7
-4970, commons-lang:commons-lang:jar:2.5
-5023, org.sonatype.aether:aether-api:jar:1.11
-5024, org.sonatype.aether:aether-impl:jar:1.11
-5026, org.sonatype.aether:aether-spi:jar:1.11
-5028, org.sonatype.aether:aether-util:jar:1.11
-5537, org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec:jar:2.0.0
-5563, org.slf4j:slf4j-api:jar:1.6.1
-5601, commons-codec:commons-codec:jar:1.4
-5630, org.codehaus.plexus:plexus-utils:jar:2.1
-5632, org.apache.maven.wagon:wagon-provider-api:jar:1.0
-5646, org.sonatype.plexus:plexus-cipher:jar:1.7
-5647, org.apache.maven:maven-model-builder:jar:3.0.3
-5648, org.apache.maven:maven-model:jar:3.0.3
-5651, org.apache.maven:maven-repository-metadata:jar:3.0.3
-5652, org.apache.maven:maven-aether-provider:jar:3.0.3
-5804, com.google.guava:guava:jar:10.0.1
-6045, org.sonatype.aether:aether-api:jar:1.13.1
-6048, org.sonatype.aether:aether-impl:jar:1.13.1
-6049, org.sonatype.aether:aether-spi:jar:1.13.1
-6050, org.sonatype.aether:aether-util:jar:1.13.1
-6066, org.apache.maven:maven-aether-provider:jar:3.0.4
-6069, org.apache.maven:maven-core:jar:3.0.4
-6071, org.apache.maven:maven-model:jar:3.0.4
-6072, org.apache.maven:maven-model-builder:jar:3.0.4
-6073, org.apache.maven:maven-plugin-api:jar:3.0.4
-6074, org.apache.maven:maven-repository-metadata:jar:3.0.4
-6075, org.apache.maven:maven-settings:jar:3.0.4
-6076, org.apache.maven:maven-settings-builder:jar:3.0.4
-6081, javax.enterprise:cdi-api:jar:1.0
-6183, commons-lang:commons-lang:jar:2.6
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6450, commons-lang:commons-lang:jar:2.6
-6459, commons-beanutils:commons-beanutils:jar:1.8.3
-6754, org.antlr:antlr-runtime:jar:3.4
-6759, org.antlr:stringtemplate:jar:3.2.1
-6786, org.apache.commons:commons-exec:jar:1.1
-6789, commons-codec:commons-codec:jar:1.4
-6793, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6855, org.slf4j:slf4j-api:jar:1.7.2
-6862, org.eclipse.orbit.bundles:org.slf4j.api:eclipse-bundle-recipe:1.7.10
-7056, com.google.guava:guava:jar:11.0.2
-7148, org.jsoup:jsoup:jar:1.7.2
-7160, commons-codec:commons-codec:jar:1.6
-7208, org.codehaus.plexus:plexus-interpolation:jar:1.16
-7209, org.apache.maven:maven-model:jar:3.1.0
-7210, org.apache.maven:maven-model-builder:jar:3.1.0
-7213, org.apache.maven:maven-repository-metadata:jar:3.1.0
-7214, org.apache.maven:maven-aether-provider:jar:3.1.0
-7225, commons-codec:commons-codec:jar:1.6
-7243, com.google.guava:guava:bundle:14.0.1
-7326, commons-collections:commons-collections:jar:3.2.1
-7351, javax.websocket:javax.websocket-api:bundle:1.0
-7386, javax.annotation:javax.annotation-api:jar:1.2
-7395, commons-io:commons-io:jar:2.2
-7665, org.slf4j:slf4j-log4j12:jar:1.7.2
-7766, com.google.guava:guava:bundle:15.0
-7793, joda-time:joda-time:jar:2.3
-7795, javax.jmdns:jmdns:jar:3.4.1
-7816, org.eclipse.orion:org.yaml.snakeyaml:eclipse-plugin:1.14.0
-7837, log4j:log4j:bundle:1.2.17
-7946, org.codehaus.plexus:plexus-interpolation:jar:1.19
-7947, org.codehaus.plexus:plexus-utils:jar:3.0.15
-7947, org.codehaus.plexus:plexus-utils:jar:3.0.17
-7952, org.slf4j:slf4j-simple:jar:1.7.5
-7956, org.apache.maven.wagon:wagon-file:jar:2.6
-7957, org.apache.maven.wagon:wagon-provider-api:jar:2.6
-7959, org.apache.maven:maven-artifact:jar:3.2.1
-7963, org.apache.maven:maven-model:jar:3.2.1
-7965, org.apache.maven:maven-plugin-api:jar:3.2.1
-8294, commons-io:commons-io:jar:2.2
-8371, org.glassfish.jaxb:jaxb-xjc:jar:2.2.11.jbossorg-1
-8372, org.glassfish.jaxb:jaxb-core:jar:2.2.11
-8372, org.glassfish.jaxb:jaxb-core:jar:2.2.11.jbossorg-1
-8414, com.thoughtworks.xstream:xstream:jar:1.4.7
-8425, org.eclipse.orion:org.apache.oltu.oauth2.client:eclipse-plugin:1.0.0
-8425, org.eclipse.orion:org.apache.oltu.oauth2.common:eclipse-plugin:1.0.0
-8813, org.codehaus.plexus:plexus-classworlds:bundle:2.5.2
-8934, org.apache.httpcomponents:httpclient:jar:4.3.6
-8938, org.apache.httpcomponents:httpcore:jar:4.3.3
-9060, ch.qos.logback:logback-core:jar:1.1.2
-9061, ch.qos.logback:logback-classic:jar:1.1.2
-9081, org.apache.commons:commons-lang3:jar:3.3.2
-9085, com.google.guava:guava:bundle:18.0
-9094, com.github.jnr:jnr-x86asm:jar:1.0.2
-9127, org.eclipse.orbit.bundles:org.slf4j.api:eclipse-bundle-recipe:1.7.10
-9127, org.slf4j:slf4j-api:jar:1.7.10
-9217, commons-codec:commons-codec:jar:1.10
-9218, commons-io:commons-io:jar:2.4
-9282, org.codehaus.plexus:plexus-interpolation:jar:1.21
-9283, org.codehaus.plexus:plexus-utils:jar:3.0.20
-9284, org.codehaus.plexus:plexus-velocity:jar:1.1.8
-9456, javax.ws.rs:javax.ws.rs-api:jar:2.0.1
-9476, commons-io:commons-io:jar:2.2
-9483, org.apache.maven.shared:maven-invoker:jar:2.1.1
-9623, org.apache.commons:commons-lang3:jar:3.4
-9858, com.googlecode.json-simple:json-simple:bundle:1.1.1
-9859, com.beust:jcommander:jar:1.48
-
-12533, org.apache.felix:org.apache.felix.scr:bundle:2.0.8
-12637, org.jacoco:org.jacoco.core:jar:0.7.9
-12639, org.jacoco:org.jacoco.report:jar:0.7.9
-12641, org.jacoco:org.jacoco.agent:jar:0.7.9
-13358, org.apache.felix:org.apache.felix.scr:bundle:2.0.10
-2334, org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1
-3903, org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1
-4563, me.prettyprint:hector-core:bundle:0.7.0-22
-4794, me.prettyprint:hector-core:bundle:0.7.0-22
-4819, me.prettyprint:hector-core:bundle:0.7.0-22
-4887, commons-daemon:commons-daemon:jar:1.0.5
-5090, commons-daemon:commons-daemon:jar:1.0.5
-5297, org.apache.mina:mina-core:bundle:2.0.2
-5902, org.apache.commons:commons-lang3:jar:3.1
-6123, org.apache.commons:commons-lang3:jar:3.1
-6218, com.jcraft:jzlib:jar:1.1.1
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6462, org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1
-6480, com.jcraft:jzlib:jar:1.1.1
-6553, org.apache.commons:commons-exec:jar:1.1
-6786, org.apache.commons:commons-exec:jar:1.1
-6793, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-7021, com.sun.jersey:jersey-bundle:jar:1.17
-7022, com.sun.jersey:jersey-bundle:jar:1.17
-7026, commons-net:commons-net:jar:3.2
-7043, commons-net:commons-net:jar:3.2
-7096, org.apache.sshd:sshd-core:jar:0.7.0
-7100, org.apache.sshd:sshd-core:jar:0.7.0
-7111, org.apache.tika:tika-parsers:bundle:1.3
-7148, org.jsoup:jsoup:jar:1.7.2
-7160, commons-codec:commons-codec:jar:1.6
-7198, org.apache.tika:tika-parsers:bundle:1.3
-7207, org.jsoup:jsoup:jar:1.7.2
-7225, commons-codec:commons-codec:jar:1.6
-7611, org.apache.mina:mina-filter-compression:bundle:2.0.7
-7634, org.apache.mina:mina-core:bundle:2.0.2
-7766, com.google.guava:guava:bundle:15.0
-7768, com.google.guava:guava:bundle:15.0
-7771, org.apache.mina:mina-core:bundle:2.0.2
-7814, org.apache.mina:mina-filter-compression:bundle:2.0.7
-7816, org.yaml:snakeyaml:bundle:1.14
-8543, org.apache.olingo:olingo-odata2-api:jar:2.0.3
-8895, org.antlr:antlr4-annotations:jar:4.3
-8988, org.antlr:antlr4-annotations:jar:4.3
-9094, com.github.jnr:jnr-x86asm:jar:1.0.2
-9095, com.github.jnr:jffi:jar:1.2.7
-9454, org.apache.olingo:olingo-odata2-api:jar:2.0.3
-9456, javax.ws.rs:javax.ws.rs-api:jar:2.0.1
-9485, javax.ws.rs:javax.ws.rs-api:jar:2.0.1
-9622, org.apache.olingo:olingo-odata2-api:jar:2.0.3
-9630, com.github.jnr:jnr-x86asm:jar:1.0.2
-9637, com.github.jnr:jffi:jar:1.2.7
-
-javax.annotation:javax.annotation-api:jar:1.3.1:provided
-7249, javax.el:javax.el-api:jar:3.0.0:provided
-7249, javax.el-3.0*.jar
-13754, javax.enterprise:cdi-api:jar:2.0:provided
-3555, javax.enterprise:cdi-api:jar:2.0:provided
-12565, javax.interceptor:javax.interceptor-api:jar:1.2:provided
-9615, javax.json.bind:javax.json.bind-api:jar:1.0:provided
-javax.json:javax.json-api:jar:1.1:provided
-8334, javax.validation:validation-api:jar:1.1.0.Final:provided
-
-10341, ch.qos.logback:logback-classic:jar:1.1.3:compile
-10652, ch.qos.logback:logback-core:jar:1.1.3:compile
-com.addthis.metrics:reporter-config3:jar:3.0.3:compile
-com.addthis.metrics:reporter-config-base:jar:3.0.3:compile
-com.arangodb:arangodb-java-driver-async:jar:4.2.5:compile
-com.arangodb:arangodb-java-driver:jar:4.2.6:compile
-com.arangodb:velocypack:jar:1.0.12:compile
-com.arangodb:velocypack-module-jdk8:jar:1.0.2:compile
-com.basho.riak:riak-client:jar:2.1.1:compile
-com.boundary:high-scale-lib:jar:1.0.6:compile
-com.carrotsearch:hppc:jar:0.5.4:compile
-com.carrotsearch:hppc:jar:0.6.0:compile
-com.carrotsearch:hppc:jar:0.7.1:compile
-com.clearspring.analytics:stream:jar:2.5.2:compile
-com.couchbase.client:core-io:jar:1.5.1:compile
-com.couchbase.client:java-client:jar:2.5.1:compile
-com.datastax.cassandra:cassandra-driver-core:jar:3.3.0:compile
-com.fasterxml.jackson.core:jackson-annotations:jar:2.6.0:compile
-com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile
-com.fasterxml.jackson.core:jackson-core:jar:2.6.0:compile
-com.fasterxml.jackson.core:jackson-core:jar:2.8.0:compile
-com.fasterxml.jackson.core:jackson-core:jar:2.8.6:compile
-com.fasterxml.jackson.core:jackson-databind:jar:2.6.0:compile
-com.fasterxml.jackson.core:jackson-databind:jar:2.8.0:compile
-com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.8.6:compile
-com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.8.6:compile
-com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.8.6:compile
-com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.8.0:compile
-com.github.ben-manes.caffeine:caffeine:jar:2.2.6:compile
-com.github.ben-manes.caffeine:caffeine:jar:2.4.0:compile
-com.github.jbellis:jamm:jar:0.3.0:compile
-12036, com.github.jnr:jffi:jar:1.2.11:compile
-12033, com.github.jnr:jnr-constants:jar:0.9.1:compile
-12035, com.github.jnr:jnr-ffi:jar:2.0.9:compile
-12037, com.github.jnr:jnr-posix:jar:3.0.29:compile
-9094, com.github.jnr:jnr-x86asm:jar:1.0.2:compile
-com.github.rholder:snowball-stemmer:jar:1.3.0.581.1:compile
-14417, com.github.spullara.mustache.java:compiler:jar:0.9.5:compile
-10586, com.github.stephenc.findbugs:findbugs-annotations:jar:1.3.9:compile
-9725, com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:jar:1.4:compile
-11936, com.googlecode.concurrent-trees:concurrent-trees:jar:2.6.0:compile
-7302, com.google.code.findbugs:jsr305:jar:1.3.9:compile
-9858, com.googlecode.json-simple:json-simple:jar:1.1.1:compile
-com.googlecode.json-simple:json-simple:jar:1.1:compile
-6547, com.google.guava:guava:jar:12.0:compile
-10733, com.google.guava:guava:jar:19.0:compile
-4876, com.google.protobuf:protobuf-java:jar:2.4.0:compile
-8928, com.google.protobuf:protobuf-java:jar:2.6.0:compile
-com.hazelcast:hazelcast:jar:3.9:compile
-4395, com.jcraft:jsch:jar:0.1.42:compile
-com.lmax:disruptor:jar:3.0.1:compile
-commons-beanutils:commons-beanutils-core:jar:1.8.0:compile
-commons-beanutils:commons-beanutils:jar:1.7.0:compile
-commons-cli:commons-cli:jar:1.1:compile
-commons-cli:commons-cli:jar:1.2:compile
-commons-codec:commons-codec:jar:1.10:compile
-commons-codec:commons-codec:jar:1.9:compile
-commons-collections:commons-collections:jar:3.2.2:compile
-commons-configuration:commons-configuration:jar:1.6:compile
-commons-digester:commons-digester:jar:1.8:compile
-commons-httpclient:commons-httpclient:jar:3.1:compile
-commons-io:commons-io:jar:2.4:compile
-commons-lang:commons-lang:jar:2.4:compile
-commons-lang:commons-lang:jar:2.6:compile
-commons-logging:commons-logging:jar:1.1.1:compile
-commons-logging:commons-logging:jar:1.1.3:compile
-commons-logging:commons-logging:jar:1.2:compile
-commons-net:commons-net:jar:3.1:compile
-commons-pool:commons-pool:jar:1.6:compile
-com.ning:compress-lzf:jar:0.8.4:compile
-com.orientechnologies:orientdb-client:jar:2.2.29:compile
-com.orientechnologies:orientdb-core:jar:2.2.29:compile
-com.orientechnologies:orientdb-graphdb:jar:2.2.29:compile
-com.orientechnologies:orientdb-server:jar:2.2.29:compile
-com.orientechnologies:orientdb-tools:jar:2.2.29:compile
-com.sun.xml.bind:jaxb-impl:jar:2.2.3:compile
-com.tdunning:t-digest:jar:3.0:compile
-com.thinkaurelius.thrift:thrift-server:jar:0.3.7:compile
-com.thoughtworks.paranamer:paranamer:jar:2.3:compile
-com.tinkerpop.blueprints:blueprints-core:jar:2.6.0:compile
-com.yammer.metrics:metrics-core:jar:2.2.0:compile
-de.flapdoodle.embed:de.flapdoodle.embed.mongo:jar:2.0.1:compile
-de.flapdoodle.embed:de.flapdoodle.embed.process:jar:2.0.1:compile
-de.jflex:jflex:jar:1.6.0:compile
-io.dropwizard.metrics:metrics-core:jar:3.2.2:compile
-io.dropwizard.metrics:metrics-jvm:jar:3.1.0:compile
-io.netty:netty-all:jar:4.0.23.Final:compile
-io.netty:netty-all:jar:4.1.5.Final:compile
-io.netty:netty-buffer:jar:4.0.47.Final:compile
-io.netty:netty-buffer:jar:4.1.13.Final:compile
-io.netty:netty-codec-http:jar:4.1.13.Final:compile
-io.netty:netty-codec:jar:4.0.47.Final:compile
-io.netty:netty-codec:jar:4.1.13.Final:compile
-io.netty:netty-common:jar:4.0.47.Final:compile
-io.netty:netty-common:jar:4.1.13.Final:compile
-io.netty:netty-handler:jar:4.0.47.Final:compile
-io.netty:netty-handler:jar:4.1.13.Final:compile
-io.netty:netty:jar:3.10.6.Final:compile
-io.netty:netty:jar:3.6.2.Final:compile
-io.netty:netty-resolver:jar:4.1.13.Final:compile
-io.netty:netty-transport:jar:4.0.47.Final:compile
-io.netty:netty-transport:jar:4.1.13.Final:compile
-io.reactivex:rxjava:jar:1.3.0:compile
-it.unimi.dsi:fastutil:jar:6.5.7:compile
-javax.activation:activation:jar:1.1:compile
-javax.json.bind:javax.json.bind-api:jar:1.0:provided
-javax.json:javax.json-api:jar:1.1:provided
-javax.mail:mail:jar:1.4.7:compile
-javax.xml.bind:jaxb-api:jar:2.2.2:compile
-javax.xml.stream:stax-api:jar:1.0-2:compile
-jdk.tools:jdk.tools:jar:1.6:system
-joda-time:joda-time:jar:2.4:compile
-joda-time:joda-time:jar:2.7:compile
-joda-time:joda-time:jar:2.9.5:compile
-log4j:log4j:jar:1.2.17:compile
-net.java.dev.jna:jna:jar:4.0.0:compile
-net.java.dev.jna:jna:jar:4.1.0:compile
-net.java.dev.jna:jna-platform:jar:4.0.0:compile
-net.jpountz.lz4:lz4:jar:1.3.0:compile
-net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile
-org.antlr:antlr:jar:3.5.2:compile
-org.antlr:antlr-runtime:jar:3.5.2:compile
-org.antlr:ST4:jar:4.0.8:compile
-org.apache.ant:ant:jar:1.7.0:compile
-org.apache.ant:ant-launcher:jar:1.7.0:compile
-org.apache.avro:avro:jar:1.7.4:compile
-org.apache.cassandra:cassandra-all:jar:3.11.0:compile
-org.apache.cassandra:cassandra-thrift:jar:3.11.0:compile
-org.apache.commons:commons-compress:jar:1.10:compile
-org.apache.commons:commons-compress:jar:1.4.1:compile
-org.apache.commons:commons-lang3:jar:3.1:compile
-org.apache.commons:commons-lang3:jar:3.4:compile
-org.apache.commons:commons-math3:jar:3.1.1:compile
-org.apache.commons:commons-math3:jar:3.2:compile
-org.apache.commons:commons-pool2:jar:2.4.2:compile
-org.apache.directory.api:api-asn1-api:jar:1.0.0-M20:compile
-org.apache.directory.api:api-util:jar:1.0.0-M20:compile
-org.apache.directory.server:apacheds-i18n:jar:2.0.0-M15:compile
-org.apache.directory.server:apacheds-kerberos-codec:jar:2.0.0-M15:compile
-org.apache.hadoop:hadoop-annotations:jar:2.5.1:compile
-org.apache.hadoop:hadoop-auth:jar:2.5.1:compile
-org.apache.hadoop:hadoop-common:jar:2.5.1:compile
-org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.5.1:compile
-org.apache.hadoop:hadoop-yarn-api:jar:2.5.1:compile
-org.apache.hadoop:hadoop-yarn-common:jar:2.5.1:compile
-org.apache.hbase:hbase-annotations:jar:1.3.1:compile
-org.apache.hbase:hbase-client:jar:1.3.1:compile
-org.apache.hbase:hbase-common:jar:1.3.1:compile
-org.apache.hbase:hbase-protocol:jar:1.3.1:compile
-org.apache.htrace:htrace-core:jar:3.1.0-incubating:compile
-org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile
-org.apache.httpcomponents:httpclient:jar:4.2.5:compile
-org.apache.httpcomponents:httpclient:jar:4.5.2:compile
-org.apache.httpcomponents:httpcore:jar:4.2.4:compile
-org.apache.httpcomponents:httpcore:jar:4.4.5:compile
-org.apache.httpcomponents:httpcore-nio:jar:4.4.5:compile
-org.apache.logging.log4j:log4j-api:jar:2.9.1:compile
-org.apache.logging.log4j:log4j-to-slf4j:jar:2.9.1:compile
-org.apache.lucene:lucene-analyzers-common:jar:6.6.1:compile
-org.apache.lucene:lucene-backward-codecs:jar:6.6.1:compile
-org.apache.lucene:lucene-core:jar:6.6.1:compile
-org.apache.lucene:lucene-grouping:jar:6.6.1:compile
-org.apache.lucene:lucene-highlighter:jar:6.6.1:compile
-org.apache.lucene:lucene-join:jar:6.6.1:compile
-org.apache.lucene:lucene-memory:jar:6.6.1:compile
-org.apache.lucene:lucene-misc:jar:6.6.1:compile
-org.apache.lucene:lucene-queries:jar:6.6.1:compile
-org.apache.lucene:lucene-queryparser:jar:6.6.1:compile
-org.apache.lucene:lucene-sandbox:jar:6.6.1:compile
-org.apache.lucene:lucene-spatial3d:jar:6.6.1:compile
-org.apache.lucene:lucene-spatial-extras:jar:6.6.1:compile
-org.apache.lucene:lucene-spatial:jar:6.6.1:compile
-org.apache.lucene:lucene-suggest:jar:6.6.1:compile
-org.apache.thrift:libthrift:jar:0.9.2:compile
-org.apache.zookeeper:zookeeper:jar:3.4.6:compile
-org.caffinitas.ohc:ohc-core:jar:0.4.4:compile
-org.cassandraunit:cassandra-unit:jar:3.3.0.2:compile
-org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
-org.codehaus.jackson:jackson-core-asl:jar:1.9.2:compile
-org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
-org.codehaus.jackson:jackson-mapper-asl:jar:1.9.2:compile
-org.codehaus.jettison:jettison:jar:1.3.3:compile
-org.eclipse.jdt.core.compiler:ecj:jar:4.4.2:compile
-org.elasticsearch.client:elasticsearch-rest-client:jar:5.6.3:compile
-org.elasticsearch.client:transport:jar:5.6.3:compile
-org.elasticsearch:elasticsearch:jar:5.6.3:compile
-org.elasticsearch:jna:jar:4.4.0-1:compile
-org.elasticsearch.plugin:lang-mustache-client:jar:5.6.3:compile
-org.elasticsearch.plugin:parent-join-client:jar:5.6.3:compile
-org.elasticsearch.plugin:percolator-client:jar:5.6.3:compile
-org.elasticsearch.plugin:reindex-client:jar:5.6.3:compile
-org.elasticsearch.plugin:transport-netty3-client:jar:5.6.3:compile
-org.elasticsearch.plugin:transport-netty4-client:jar:5.6.3:compile
-org.elasticsearch:securesm:jar:1.1:compile
-org.erlang.otp:jinterface:jar:1.6.1:compile
-org.fusesource:sigar:jar:1.6.4:compile
-org.hamcrest:hamcrest-core:jar:1.3:compile
-org.hamcrest:hamcrest-library:jar:1.3:compile
-org.hdrhistogram:HdrHistogram:jar:2.1.9:compile
-org.infinispan:infinispan-client-hotrod:jar:9.1.1.Final:compile
-org.infinispan:infinispan-commons:jar:9.1.1.Final:compile
-org.infinispan:infinispan-core:jar:9.1.1.Final:compile
-org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
-org.jboss.marshalling:jboss-marshalling-osgi:jar:2.0.0.Beta3:compile
-org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.1.Final:compile
-org.jctools:jctools-core:jar:1.2.1:compile
-org.jgroups:jgroups:jar:4.0.6.Final:compile
-technology.jnosql, org.jnosql.*:*:*:compile
-org.jruby.jcodings:jcodings:jar:1.0.8:compile
-org.jruby.joni:joni:jar:2.1.2:compile
-org.mindrot:jbcrypt:jar:0.3m:compile
-org.mongodb:bson:jar:3.5.0:compile
-org.mongodb:mongodb-driver-async:jar:3.5.0:compile
-org.mongodb:mongodb-driver-core:jar:3.5.0:compile
-org.mongodb:mongo-java-driver:jar:3.5.0:compile
-org.mortbay.jetty:jetty-util:jar:6.1.26:compile
-org.ow2.asm:asm-analysis:jar:5.0.3:compile
-org.ow2.asm:asm-commons:jar:5.0.3:compile
-org.ow2.asm:asm:jar:5.0.3:compile
-org.ow2.asm:asm-tree:jar:5.0.3:compile
-org.ow2.asm:asm-util:jar:5.0.3:compile
-org.slf4j:jcl-over-slf4j:jar:1.7.7:compile
-org.slf4j:slf4j-api:jar:1.6.1:compile
-org.slf4j:slf4j-api:jar:1.7.10:compile
-org.slf4j:slf4j-api:jar:1.7.13:compile
-org.slf4j:slf4j-api:jar:1.7.21:compile
-org.slf4j:slf4j-api:jar:1.7.25:compile
-org.slf4j:slf4j-log4j12:jar:1.6.1:compile
-org.tukaani:xz:jar:1.0:compile
-org.xerial.snappy:snappy-java:jar:1.0.4.1:compile
-org.xerial.snappy:snappy-java:jar:1.1.0.1:compile
-org.xerial.snappy:snappy-java:jar:1.1.1.7:compile
-org.yaml:snakeyaml:jar:1.11:compile
-org.yaml:snakeyaml:jar:1.15:compile
-redis.clients:jedis:jar:2.9.0:compile
-stax:stax-api:jar:1.0.1:compile
-xmlenc:xmlenc:jar:0.52:compile
-
-14216, org.ptolemy.triquetrum.editor.palette_11.1.0.201709171634.jar
-14158, ptolemy.actor.lib_11.1.0.201709171634.jar
-14159, ptolemy.core_11.1.0.201709171634.jar
-14160, ptolemy.gui_11.1.0.201709171634.jar
-14161, ptolemy.moml_11.1.0.201709171634.jar
-
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6553, org.apache.commons:commons-exec:jar:1.1
-6786, org.apache.commons:commons-exec:jar:1.1
-6793, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-7026, commons-net:commons-net:jar:3.2
-7043, commons-net:commons-net:jar:3.2
-7160, commons-codec:commons-codec:jar:1.6
-7225, commons-codec:commons-codec:jar:1.6
-7793, joda-time:joda-time:jar:2.3
-7794, org.quartz-scheduler:quartz:jar:2.2.1
-7794, org.quartz-scheduler:quartz-jobs:jar:2.2.1
-7795, javax.jmdns:jmdns:jar:3.4.1
-7796, com.xeiam.xchart:xchart:jar:2.2.1
-8246, org.mapdb:mapdb:bundle:1.0.2
-8414, com.thoughtworks.xstream:xstream:jar:1.4.7
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6553, org.apache.commons:commons-exec:jar:1.1
-6786, org.apache.commons:commons-exec:jar:1.1
-6793, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-7026, commons-net:commons-net:jar:3.2
-7043, commons-net:commons-net:jar:3.2
-7160, commons-codec:commons-codec:jar:1.6
-7225, commons-codec:commons-codec:jar:1.6
-7793, joda-time:joda-time:jar:2.3
-7794, org.quartz-scheduler:quartz:jar:2.2.1
-7794, org.quartz-scheduler:quartz-jobs:jar:2.2.1
-7795, javax.jmdns:jmdns:jar:3.4.1
-7796, com.xeiam.xchart:xchart:jar:2.2.1
-8246, org.mapdb:mapdb:bundle:1.0.2
-8414, com.thoughtworks.xstream:xstream:jar:1.4.7
-
-15112, javax.annotation:javax.annotation-api:jar:1.3.1:provided
-7384, javax.el:javax.el-api:jar:3.0.0:provided
-13754, javax.enterprise:cdi-api:jar:2.0:provided
-3555, javax.inject:javax.inject:jar:1:provided
-12565, javax.interceptor:javax.interceptor-api:jar:1.2:provided
-9615, javax.json.bind:javax.json.bind-api:jar:1.0:provided
-7364, javax.json:javax.json-api:jar:1.1:provided
-15114, javax.validation:validation-api:jar:1.1.0.Final:provided
-org.apache.logging.log4j:log4j-api:jar:2.9.1:compile
-org.apache.logging.log4j:log4j-to-slf4j:jar:2.9.1:compile
-11429, org.hamcrest:hamcrest-core:jar:1.3:compile
-13368, org.slf4j:slf4j-api:jar:1.7.25:compile
-
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6793, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-7160, commons-codec:commons-codec:jar:1.6
-7225, commons-codec:commons-codec:jar:1.6
-7351, javax.websocket:javax.websocket-api:bundle:1.0
-7816, org.eclipse.orion:org.yaml.snakeyaml:eclipse-plugin:1.14.0
-8425, org.eclipse.orion:org.apache.oltu.oauth2.client:eclipse-plugin:1.0.0
-8425, org.eclipse.orion:org.apache.oltu.oauth2.common:eclipse-plugin:1.0.0
-
-15262, javax.measure.unit-api_1.0.0.jar
-
-9724, org.apache.commons.math3_3.5.0.v20160301-1110.jar
-
-webtools.webservices, org.eclipse.webtools.webservices:*:*:*
-webtools.sourceediting, org.eclipse.webtools.sourceediting:*:*:*
-webtools.jsdt, org.eclipse.webtools.jsdt.bundles:*:*:*
-webtools.jst, org.eclipse.webtools.javaee:*:*:*
-tools.tm, org.eclipse.tm:*:*:*
-
-technology.usssdk, org.eclipse.userstorage:*:*:*
-
-2583, org.hamcrest:hamcrest-core:*:1.1
-2583, junit:junit:*:4.5
-296, junit:junit:*:3.8.1
-297, junit:junit:*:4.0
-298, junit:junit:*:4.1
-300, junit:junit:*:4.1
-298, junit:junit:*:3.8.2
-1231, junit:junit:*:4.2
-1396, junit:junit:*:4.3.1
-1579, junit:junit:*:3.8.2
-2027, junit:junit:*:4.4
-2583, junit:junit:*:4.5
-3480, junit:junit:*:4.7
-3677, junit:junit:*:4.8.1
-4898, junit:junit:*:4.8.2
-5958, junit:junit:*:4.10
-7064, junit:junit:*:4.11
-9232, junit:junit:*:4.12
-
-12549, org.junit:*:*:5.0.0
-
-com.ibm.icu.base_52.1.1.v201501240615.jar
-com.ibm.icu.base_54.1.1.v201501272100.jar
-com.ibm.icu.base_56.1.0.v201601250100.jar
-com.ibm.icu.base.source_52.1.1.v201501240615.jar
-com.ibm.icu.base.source_54.1.1.v201501272100.jar
-javax.mail.glassfish_1.4.1.v201108011116.jar
-1421, org.apache.commons.collections_3.2.0.v2013030210310.jar
-5809, org.apache.commons.fileupload_1.2.2.v20111214-1400.jar
-6102, org.apache.commons.pool_1.6.0.v201204271246.jar
-5813, org.apache.derby_10.8.2.2_v201211210650.jar
-1977, org.apache.velocity_1.5.0.v200905192330.jar
-7219, org.hamcrest.integration_1.3.0.v201305210900.jar
-7219, org.hamcrest:*:*:1.3
-7064, org.junit_4.11.0.v201303080030.jar
-9232, org.junit_4.12.0.v201504281640.jar
-7064, org.junit.source_4.11.0.v201303080030.jar
-org.mozilla.javascript_1.7.5.v201504281450.jar
-
-7334, javax.json:javax.json-api:*:1.0
-6938, javax.json:javax.json-api:*:0.0.99
-
-10527, org.eclipse.orbit.bundles:com.fasterxml.jackson.core.jackson-annotations:eclipse-bundle-recipe:2.6.2
-10528, org.eclipse.orbit.bundles:com.fasterxml.jackson.core.jackson-core:eclipse-bundle-recipe:2.6.2
-10529, org.eclipse.orbit.bundles:com.fasterxml.jackson.core.jackson-databind:eclipse-bundle-recipe:2.6.2
-10862, org.eclipse.orbit.bundles:org.glassfish.jersey.bundles.repackaged.jersey-guava:eclipse-bundle-recipe:2.22.1
-10862, org.eclipse.orbit.bundles:org.glassfish.jersey.core.jersey-client:eclipse-bundle-recipe:2.22.1
-10862, org.eclipse.orbit.bundles:org.glassfish.jersey.core.jersey-common:eclipse-bundle-recipe:2.22.1
-10862, org.eclipse.orbit.bundles:org.glassfish.jersey.core.jersey-server:eclipse-bundle-recipe:2.22.1
-10865, org.eclipse.orbit.bundles:org.glassfish.jersey.apache.connector:eclipse-bundle-recipe:2.22.1
-10870, org.eclipse.orbit.bundles:org.glassfish.jersey.ext.entityfiltering:eclipse-bundle-recipe:2.22.1
-10872, org.eclipse.orbit.bundles:org.glassfish.jersey.media.jersey-media-json-jackson:eclipse-bundle-recipe:2.22.1
-10883, org.eclipse.orbit.bundles:org.glassfish.hk2.api:eclipse-bundle-recipe:2.5.0
-10885, org.eclipse.orbit.bundles:org.glassfish.hk2.utils:eclipse-bundle-recipe:2.5.0
-10887, org.eclipse.orbit.bundles:org.glassfish.hk2.locator:eclipse-bundle-recipe:2.5.0
-10889, org.eclipse.orbit.bundles:org.glassfish.hk2.osgi-resource-locator:eclipse-bundle-recipe:2.5.0
-11068, org.eclipse.orbit.bundles:org.kohsuke.args4j:eclipse-bundle-recipe:2.33.0
-11185, org.eclipse.orbit.bundles:com.google.javascript:eclipse-bundle-recipe:0.0.20160315
-1153, org.eclipse.orbit.bundles:com.jcraft.jsch:eclipse-bundle-recipe:0.1.54
-11713, org.eclipse.orbit.bundles:org.apache.httpcomponents.httpclient:eclipse-bundle-recipe:4.5.2
-11911, org.sonatype.m2e.extras:org.sonatype.m2e.mavenarchiver:eclipse-plugin:0.17.2.201606141937-signed-20160830073346
-12032, org.eclipse.orbit.bundles:com.github.jnr.unixsocket:eclipse-bundle-recipe:0.12.0
-12033, org.eclipse.orbit.bundles:com.github.jnr.constants:eclipse-bundle-recipe:0.9.1
-12034, org.eclipse.orbit.bundles:com.github.jnr.enxio:eclipse-bundle-recipe:0.12.0
-12035, org.eclipse.orbit.bundles:com.github.jnr.ffi:eclipse-bundle-recipe:2.0.9
-12036, org.eclipse.orbit.bundles:com.github.jnr.jffi:eclipse-bundle-recipe:1.2.11
-12036, org.eclipse.orbit.bundles:com.github.jnr.jffi.native:eclipse-bundle-recipe:1.2.11
-12037, org.eclipse.orbit.bundles:com.github.jnr.posix:eclipse-bundle-recipe:3.0.29
-12051, org.eclipse.orbit.bundles:org.apache.commons.fileupload:eclipse-bundle-recipe:1.3.2
-12054, org.eclipse.orbit.bundles:com.fasterxml.jackson.jaxrs.jackson-jaxrs-base:eclipse-bundle-recipe:2.6.2
-12055, org.eclipse.orbit.bundles:com.fasterxml.jackson.datatype.jackson-datatype-guava:eclipse-bundle-recipe:2.6.2
-12057, org.eclipse.orbit.bundles:com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider:eclipse-bundle-recipe:2.6.2
-12060, org.eclipse.orbit.bundles:org.apache.lucene.analyzers-common:eclipse-bundle-recipe:6.1.0
-12062, org.eclipse.orbit.bundles:org.apache.lucene.misc:eclipse-bundle-recipe:6.1.0
-12063, org.eclipse.orbit.bundles:org.apache.lucene.queryparser:eclipse-bundle-recipe:6.1.0
-12068, org.eclipse.orbit.bundles:com.google.gson:eclipse-bundle-recipe:2.7.0
-12419, org.eclipse.orbit.bundles:com.spotify.docker.client:eclipse-bundle-recipe:6.1.1
-12453, org.eclipse.orbit.bundles:org.objectweb.asm.commons:eclipse-bundle-recipe:5.2.0
-12453, org.eclipse.orbit.bundles:org.objectweb.asm:eclipse-bundle-recipe:5.2.0
-12456, org.eclipse.orbit.bundles:org.objectweb.asm.commons:eclipse-bundle-recipe:6.0.0
-12457, org.eclipse.orbit.bundles:org.objectweb.asm.tree:eclipse-bundle-recipe:5.2.0
-12457, org.eclipse.orbit.bundles:org.objectweb.asm.tree:eclipse-bundle-recipe:6.0.0
-12458, org.eclipse.orbit.bundles:org.objectweb.asm.util:eclipse-bundle-recipe:6.0.0
-12459, org.eclipse.orbit.bundles:org.objectweb.asm.analysis:eclipse-bundle-recipe:6.0.0
-12470, org.eclipse.orbit.bundles:com.ibm.icu.base:eclipse-bundle-recipe:58.2.0
-12470, org.eclipse.orbit.bundles:com.ibm.icu:eclipse-bundle-recipe:58.2.0
-12537, org.eclipse.orbit.bundles:org.apache.batik.css:eclipse-bundle-recipe:1.8.0
-12538, org.eclipse.orbit.bundles:org.apache.batik.util:eclipse-bundle-recipe:1.8.0
-12538, org.eclipse.orbit.bundles:org.apache.batik.util.gui:eclipse-bundle-recipe:1.8.0
-12563, org.eclipse.orbit.bundles:com.google.guava:eclipse-bundle-recipe:21.0.0
-12566, org.eclipse.orbit.bundles:org.apache.httpcomponents.httpcore:eclipse-bundle-recipe:4.4.6
-12594, org.eclipse.orbit.bundles:org.apache.httpcomponents.httpclient.win:eclipse-bundle-recipe:4.5.2
-12637, org.jacoco:org.jacoco.core:jar:0.7.9
-12639, org.jacoco:org.jacoco.report:jar:0.7.9
-12641, org.jacoco:org.jacoco.agent:jar:0.7.9
-12695, org.eclipse.orbit.bundles:org.apache.commons.codec:eclipse-bundle-recipe:1.9.0
-12750, org.eclipse.orbit.bundles:org.apache.ant:eclipse-bundle-recipe:1.10.1
-13012, org.eclipse.orbit.bundles:org.apache.maven.resolver.api:eclipse-bundle-recipe:1.0.3
-13013, org.eclipse.orbit.bundles:org.apache.maven.resolver.connector.basic:eclipse-bundle-recipe:1.0.3
-13014, org.eclipse.orbit.bundles:org.apache.maven.resolver.impl:eclipse-bundle-recipe:1.0.3
-13015, org.eclipse.orbit.bundles:org.apache.maven.resolver.spi:eclipse-bundle-recipe:1.0.3
-13016, org.eclipse.orbit.bundles:org.apache.maven.resolver.transport.file:eclipse-bundle-recipe:1.0.3
-13017, org.eclipse.orbit.bundles:org.apache.maven.resolver.transport.http:eclipse-bundle-recipe:1.0.3
-13018, org.eclipse.orbit.bundles:org.apache.maven.resolver.util:eclipse-bundle-recipe:1.0.3
-131, commons-codec:commons-codec:jar:1.3
-13729, org.eclipse.orbit.bundles:org.tukaani.xz:eclipse-bundle-recipe:1.6.0
-1425, org.eclipse.orbit.bundles:org.apache.lucene.core:eclipse-bundle-recipe:6.1.0
-1425, org.eclipse.orbit.bundles:org.apache.lucene.core:eclipse-bundle-recipe:7.0.0
-2334, org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1
-2470, org.eclipse.orbit.bundles:org.freemarker:eclipse-bundle-recipe:2.3.22
-3044, commons-net:commons-net:jar:3.2
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-6553, org.apache.commons:commons-exec:jar:1.1
-6810, org.eclipse.orbit.bundles:javaewah:eclipse-bundle-recipe:1.1.6
-7096, org.apache.sshd:sshd-core:jar:0.7.0
-7148, org.jsoup:jsoup:jar:1.7.2
-71, org.apache.commons:commons-lang3:jar:3.1
-7634, org.apache.mina:mina-core:bundle:2.0.2
-7766, com.google.guava:guava:bundle:15.0
-8895, org.antlr:antlr4-annotations:jar:4.3
-9094, com.github.jnr:jnr-x86asm:jar:1.0.2
-9291, org.eclipse.orbit.bundles:com.sun.jna:eclipse-bundle-recipe:4.1.0
-9292, org.eclipse.orbit.bundles:com.sun.jna.platform:eclipse-bundle-recipe:4.1.0
-9456, javax.ws.rs:javax.ws.rs-api:jar:2.0.1
-
-8436, commons-codec:commons-codec:jar:1.8
-131, commons-codec:commons-codec:jar:1.3
-213, commons-codec:commons-codec:jar:1.3
-214, commons-codec:commons-codec:jar:1.3
-1049, commons-codec:commons-codec:jar:1.3
-1110, commons-codec:commons-codec:jar:1.3
-1201, commons-codec:commons-codec:jar:1.3
-1220, commons-codec:commons-codec:jar:1.3
-1275, commons-codec:commons-codec:jar:1.3
-1385, commons-codec:commons-codec:jar:1.3
-1404, commons-codec:commons-codec:jar:1.3
-1420, commons-codec:commons-codec:jar:1.3
-1562, commons-codec:commons-codec:jar:1.3
-2356, commons-codec:commons-codec:jar:1.2
-8436, commons-codec:commons-codec:jar:1.8
-
-10054, org.reflections:reflections:jar:0.9.9
-10239, com.fasterxml:classmate:bundle:1.3.0
-10339, org.hibernate:hibernate-validator:jar:5.2.2.Final
-1278, commons-io:commons-io:jar:2.4
-131, commons-codec:commons-codec:jar:1.6
-2334, org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1
-3435, javax.validation:validation-api:jar:1.1.0
-4462, org.javassist:javassist:bundle:3.19.0
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-7384, org.glassfish:javax.el:jar:3.0.1-b08
-7385, javax.servlet.jsp:javax.servlet.jsp-api:jar:2.3.1
-9101, com.fasterxml.jackson.core:jackson-databind:bundle:2.5.0
-9102, com.fasterxml.jackson.core:jackson-annotations:bundle:2.5.0
-9103, com.fasterxml.jackson.core:jackson-core:bundle:2.5.0
-9456, javax.ws.rs:javax.ws.rs-api:jar:2.0.1
-9891, org.jboss.logging:jboss-logging:jar:3.1.3
-9895, org.jboss.spec.javax.servlet.jstl:jboss-jstl-api_1.2_spec:jar:1.1.2
-9898, org.apache.felix:org.apache.felix.configadmin:bundle:1.8.4
-9899, com.sun.mail:javax.mail:jar:1.5.4
-9900, org.apache.xbean:xbean-finder:bundle:4.3
-9901, org.apache.xbean:xbean-bundleutils:bundle:4.3
-9902, org.apache.xbean:xbean-reflect:bundle:4.3
-9903, org.ops4j.pax.web:pax-web-api:bundle:4.1.2
-9904, org.ops4j.pax.web:pax-web-spi:bundle:4.1.2
-9905, org.ops4j.pax.web:pax-web-api:bundle:4.1.2
-9906, org.ops4j.pax.web:pax-web-jetty:bundle:4.1.2
-9907, org.ops4j.pax.web:pax-web-extender-whiteboard:bundle:4.1.2
-9941, org.eclipse.packagedrone:org.tukani.xz:eclipse-plugin:1.5.0
-
-10448, Apache Tomcat/8.0.29
-
-13985, com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0:compile
-13983, com.fasterxml.jackson.core:jackson-core:jar:2.9.0:compile
-13984, com.fasterxml.jackson.core:jackson-databind:jar:2.9.0:compile
-133, commons-logging:commons-logging:jar:1.0.4:compile
-219, commons-logging:commons-logging:jar:1.0.4:compile
-220, commons-logging:commons-logging:jar:1.0.4:compile
-221, commons-logging:commons-logging:jar:1.0.4:compile
-222, commons-logging:commons-logging:jar:1.0.4:compile
-224, commons-logging:commons-logging:jar:1.0.4:compile
-225, commons-logging:commons-logging:jar:1.0.4:compile
-1029, commons-logging:commons-logging:jar:1.0.4:compile
-1050, commons-logging:commons-logging:jar:1.0.4:compile
-1076, commons-logging:commons-logging:jar:1.0.4:compile
-1108, commons-logging:commons-logging:jar:1.0.4:compile
-1168, commons-logging:commons-logging:jar:1.0.4:compile
-1526, commons-logging:commons-logging:jar:1.0.4:compile
-1576, commons-logging:commons-logging:jar:1.0.4:compile
-1051, commons-logging:commons-logging:jar:1.0.4:compile
-223, commons-logging:commons-logging:jar:1.0.3:compile
-1186, commons-logging:commons-logging:jar:1.1.0:compile
-1243, commons-logging:commons-logging:jar:1.1.0:compile
-1279, commons-logging:commons-logging:jar:1.1.0:compile
-1644, commons-logging:commons-logging:jar:1.1.0:compile
-10162, commons-logging:commons-logging:jar:1.2:compile
-12302, io.jsonwebtoken:jjwt:jar:0.7.0:compile
-14456, org.apache.qpid:proton-j:jar:0.22.0:compile
-iot.hono, org.eclipse.hono:*:*:*
-14672, org.springframework.boot:spring-boot-actuator:jar:1.5.8
-14675, org.springframework.boot:spring-boot-autoconfigure:jar:1.5.8
-14671, org.springframework.boot:spring-boot:jar:1.5.8
-13393, org.springframework:spring-aop:jar:4.1.9:compile
-14697, org.springframework:spring-beans:jar:4.3.12:compile
-13394, org.springframework:spring-beans:jar:4.1.9:compile
-14678, org.springframework:spring-aop:jar:4.3.12:compile
-14677, org.springframework:spring-context:jar:4.3.12:compile
-14680, org.springframework:spring-core:jar:4.3.12:compile
-14681, org.springframework:spring-expression:jar:4.3.12:compile
-
-
-14802, org.springframework:spring-context:jar:4.3.8:compile
-14803, org.springframework:spring-expression:jar:4.3.8:compile
-14804, org.springframework:spring-jdbc:jar:4.3.8:compile
-14805, org.springframework:spring-orm:jar:4.3.8:compile
-14806, org.springframework:spring-oxm:jar:4.3.8:compile
-14807, org.springframework:spring-tx:jar:4.3.8:compile
-14803, org.springframework:spring-expression:jar:4.3.8:compile
-
-7722, com.fasterxml.jackson.core:*:jar:2.2.2
-
-9756, com.adobe.xmp:xmpcore:jar:5.1.2:provided
-10584, com.adobe.xmp:xmpcore:jar:5.1.2:provided
-8950, com.beust:jcommander:jar:1.35:provided
-7710, com.google.code.gson:gson:jar:2.2.4:provided
-9419, com.google.guava:guava:jar:17.0:provided
-4895, com.google.guava:guava:jar:8.0:provided
-5691, com.google.guava:guava:jar:8.0:provided
-6717, com.google.guava:guava:jar:13.0:provided
-6767, com.google.guava:guava:jar:13.0.1:provided
-7896, com.google.guava:guava:jar:16.0:provided
-12563, com.google.guava:guava:jar:21.0:provided
-14961, com.google.guava:guava:jar:23.4:provided
-12224, commons-io:commons-io:jar:2.5:provided
-1112, commons-logging:commons-logging-api:jar:1.1:provided
-5452, de.l3s.boilerpipe:boilerpipe:jar:1.1.0:provided
-10291, dnsjava:dnsjava:jar:2.1.7:provided
-134, javax.activation:activation:jar:1.1:provided
-9291, net.java.dev.jna:jna:jar:4.1.0:provided
-13653, org.apache.commons:commons-lang3:jar:3.5:provided
-3662, org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:provided
-13506, org.apache.httpcomponents:httpasyncclient:jar:4.1.3:provided
-11713, org.apache.httpcomponents:httpclient:jar:4.5.3:provided
-11716, org.apache.httpcomponents:httpcore:jar:4.4.6:provided
-13509, org.apache.httpcomponents:httpcore-nio:jar:4.4.6:provided
-
-131, commons-codec:commons-codec:jar:1.4
-131, commons-codec:commons-codec:jar:1.6
-2334, org.apache.geronimo.specs:geronimo-jta_1.1_spec:jar:1.1.1
-4512, javax.ws.rs:jsr311-api:jar:1.1.1
-5092, org.apache.mina:mina-core:bundle:2.0.2
-6402, org.apache.felix:org.apache.felix.gogo.command:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.runtime:bundle:0.10.0
-6402, org.apache.felix:org.apache.felix.gogo.shell:bundle:0.10.0
-7021, com.sun.jersey:jersey-bundle:jar:1.17
-7096, org.apache.sshd:sshd-core:jar:0.7.0
-7634, org.apache.mina:mina-core:bundle:2.0.2
-7766, com.google.guava:guava:bundle:15.0
-
-13159, io.dropwizard.metrics:metrics-core:jar:3.2.2:compile
-13162, io.dropwizard.metrics:metrics-graphite:jar:3.2.2:compile
-13160, io.dropwizard.metrics:metrics-jvm:jar:3.2.2:compile
-
-eclipse.jdt, org.eclipse.jdt.*:*:*:*
-
-5178, de.pdark:decentxml:jar:1.3:compile
-15165, org.apache.commons:commons-compress:jar:1.15:compile
-15165, org.apache.commons:commons-compress:jar:sources:1.15:compile
-7907, org.apache.commons:commons-exec:jar:1.2:compile
-6822, org.apache.maven:maven-archiver:jar:2.5:compile
-4585, org.apache.maven:maven-artifact:jar:3.0:compile
-12509, org.apache.maven:maven-artifact-manager:jar:2.0.9:compile
-4586, org.apache.maven:maven-compat:jar:3.0:compile
-4587, org.apache.maven:maven-core:jar:3.0:compile
-5648, org.apache.maven:maven-model:jar:3.0.3:compile
-12510, org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile
-12511, org.apache.maven:maven-plugin-registry:jar:2.0.9:compile
-12512, org.apache.maven:maven-profile:jar:2.0.9:compile
-12513, org.apache.maven:maven-project:jar:2.0.9:compile
-4913, org.apache.maven:maven-settings-builder:jar:3.0.2:compile
-4906, org.apache.maven:maven-settings:jar:3.0.2:compile
-12514, org.apache.maven:maven-toolchain:jar:2.0.9:compile
-5179, org.apache.maven.plugins:maven-source-plugin:maven-plugin:2.1:compile
-8561, org.apache.maven.surefire:surefire-api:jar:2.17:compile
-8560, org.apache.maven.surefire:surefire-booter:jar:2.17:compile
-13048, org.codehaus.plexus:plexus-archiver:jar:3.4:compile
-7945, org.codehaus.plexus:plexus-classworlds:jar:2.5.1:compile
-7559, org.codehaus.plexus:plexus-compiler-api:jar:2.2:compile
-5187, org.codehaus.plexus:plexus-compiler-api:jar:1.6:compile
-5188, org.codehaus.plexus:plexus-compiler-manager:jar:1.6:compile
-5899, org.codehaus.plexus:plexus-compiler-manager:jar:1.8.1:compile
-7560, org.codehaus.plexus:plexus-compiler-manager:jar:2.2:compile
-5186, org.codehaus.plexus:plexus-io:jar:1.0.1:compile
-6820, org.codehaus.plexus:plexus-io:jar:2.0.5:compile
-9694, org.codehaus.plexus:plexus-io:jar:2.6:compile
-9829, org.codehaus.plexus:plexus-io:jar:2.4.1:compile
-technology.tycho, org.eclipse.tycho:*:*:*
-13052, org.iq80.snappy:snappy:jar:0.4:compile
-3931, org.objenesis:objenesis:jar:1.0:compile
-11298, org.objenesis:objenesis:jar:2.2:compile
-9714, org.ow2.asm:asm-debug-all:jar:5.0.3:compile
-4573, org.sonatype.aether:aether-api:jar:1.7:compile
-4574, org.sonatype.aether:aether-impl:jar:1.7:compile
-4575, org.sonatype.aether:aether-spi:jar:1.7:compile
-4576, org.sonatype.aether:aether-util:jar:1.7:compile
-6208, org.sonatype.sisu:sisu-inject-bean:jar:2.2.3:compile
-5635, org.sonatype.sisu:sisu-inject-plexus:jar:2.3.0:compile
-8565, org.apache.maven.surefire:maven-surefire-common:jar:2.17:compile
-
-5149, org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6:compile
-5149, org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
-5149, org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
-5149, org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
-5149, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
-
-modeling.emf.teneo, org.eclipse.emf.teneo.*.jar
-
-3941, javax.annotation_1.0.0.v20101115-0725.jar
-8372, com.sun.xml.bind_2.2.11.v201105210647.jar
-
-12219, com.fasterxml.jackson.core:jackson-annotations:jar:2.8.2:compile
-15526, com.google.guava:guava:jar:23.5-jre:compile
-15029, com.squareup.okhttp3:okhttp:jar:3.8.1:compile
-13639, com.squareup.okio:okio:jar:1.13.0:compile
-13665, com.squareup.okio:okio:jar:1.12.0:compile
-9275, com.squareup.okio:okio:jar:1.2.0:compile
-9717, com.squareup.okio:okio:jar:1.3.0:compile
-11382, com.squareup.okio:okio:jar:1.6.0:compile
-12270, com.squareup.okio:okio:jar:1.8.0:compile
-12443, com.squareup.okio:okio:jar:1.9.0:compile
-13496, com.squareup.okio:okio:jar:1.11.0:compile
-15550, org.flywaydb:flyway-core:jar:5.0.7:compile
-15518, org.influxdb:influxdb-java:jar:2.7:compile
-15520, org.postgresql:postgresql:jar:42.1.4:compile
-9128, org.slf4j:slf4j-ext:jar:1.7.10:compile
-3649, org.slf4j:slf4j-ext:jar:1.5.10:compile
-3875, org.slf4j:slf4j-ext:jar:1.5.11:compile
-4402, org.slf4j:slf4j-ext:jar:1.6.1:compile
-5588, org.slf4j:slf4j-ext:jar:1.6.2:compile
-5833, org.slf4j:slf4j-ext:jar:1.6.4:compile
-6856, org.slf4j:slf4j-ext:jar:1.7.2:compile
-
-5058, com.google.inject_3.0.0.v201312141243.jar
-3640, lpg.runtime.java_2.0.17.v201004271640.jar
-3640, lpg.runtime.java.source_2.0.17.v201004271640.jar
-4580, org.apache.commons.cli_1.2.0.v201404270220.jar
-10790, org.apache.commons.jxpath_1.3.0.v200911051830.jar
-10790, org.apache.commons.jxpath.source_1.3.0.v200911051830.jar
-1148, org.apache.xerces_2.9.0.v201101211617.jar
-tools.aspectj, org.aspectj.*.jar
-7311, org.sat4j.pb_2.3.5.v201404071733.jar
-7354, org.tukaani.xz_1.3.0.v201308270617.jar
-7354, org.tukaani.xz.source_1.3.0.v201308270617.jar
-2166, org.w3c.css.sac_1.3.1.v200903091627.jar
-2166, org.w3c.css.sac.source_1.3.1.v200903091627.jar
-2166, org.w3c.dom.smil_1.0.1.v200903091627.jar
-2166, org.w3c.dom.smil.source_1.0.1.v200903091627.jar
-
-14498, com.typesafe.akka:akka-cluster-sharding_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-cluster-tools_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-cluster_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-actor_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-distributed-data_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-persistence_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-persistence-query_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-remote_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-slf4j_2.12:jar:2.5.6
-14498, com.typesafe.akka:akka-stream_2.12:jar:2.5.6
-
-
-7920, ch.qos.logback:logback-classic:jar:1.1.1:provided
-7926, ch.qos.logback:logback-core:jar:1.1.1:provided
-12507, ch.qos.logback:logback-core:jar:1.1.8:provided
-12508, ch.qos.logback:logback-classic:jar:1.1.8:provided
-12820, ch.qos.logback:logback-core:jar:1.2.1:provided
-12819, ch.qos.logback:logback-classic:jar:1.2.1:provided
-13514, ch.qos.logback:logback-core:jar:1.2.2:provided
-13513, ch.qos.logback:logback-classic:jar:1.2.2:provided
-13635, ch.qos.logback:logback-core:jar:1.2.3:provided
-13636, ch.qos.logback:logback-classic:jar:1.2.3:provided
-3650, ch.qos.logback:logback-core:jar:0.9.18:provided
-3651, ch.qos.logback:logback-classic:jar:0.9.18:provided
-3861, ch.qos.logback:logback-core:jar:0.9.19:provided
-3862, ch.qos.logback:logback-classic:jar:0.9.19:provided
-4376, ch.qos.logback:logback-core:jar:0.9.24:provided
-4375, ch.qos.logback:logback-classic:jar:0.9.24:provided
-4825, ch.qos.logback:logback-core:jar:0.9.27:provided
-4824, ch.qos.logback:logback-classic:jar:0.9.27:provided
-5493, ch.qos.logback:logback-core:jar:0.9.20:provided
-5492, ch.qos.logback:logback-classic:jar:0.9.20:provided
-6527, ch.qos.logback:logback-core:jar:0.9.28:provided
-5567, ch.qos.logback:logback-classic:jar:0.9.28:provided
-5593, ch.qos.logback:logback-core:jar:0.9.30:provided
-5592, ch.qos.logback:logback-classic:jar:0.9.30:provided
-5830, ch.qos.logback:logback-core:jar:1.0.0:provided
-5831, ch.qos.logback:logback-classic:jar:1.0.0:provided
-6510, ch.qos.logback:logback-core:jar:1.0.3:provided
-6509, ch.qos.logback:logback-classic:jar:1.0.3:provided
-6860, ch.qos.logback:logback-core:jar:1.0.7:provided
-6861, ch.qos.logback:logback-classic:jar:1.0.7:provided
-
-13889, org.apache.felix:org.apache.felix.main:jar:4.4.0:provided
-9373, org.osgi:org.osgi.compendium:jar:5.0.0:provided
-5932, org.osgi:org.osgi.core:jar:5.0.0:provided
-12453, org.ow2.asm:asm-all:jar:5.2:compile
-14201, org.slf4j:jcl-over-slf4j:jar:1.7.5:provided
-
-12265, com.fasterxml.jackson.core:jackson-annotations:jar:2.8.0:compile
-7144, com.github.jsonld-java:jsonld-java:jar:1.0.0:compile
-10530, com.github.jsonld-java:jsonld-java:jar:0.7.0:compile
-11532, com.github.jsonld-java:jsonld-java:jar:0.8.3:compile
-
-10531, com.opencsv:opencsv:jar:3.2:compile
-
-11932, com.fasterxml.jackson.core:jackson-annotations:bundle:2.8.2
-10532, com.spatial4j:spatial4j:bundle:0.4.1
-
-10613, aopalliance-1.0.jar
-11932, jackson-annotations-2.8.2.jar
-10462, jstl-1.1.2.jar
-10565, lucene-analyzers-common-5.2.1.jar
-10564, lucene-core-5.2.1.jar
-10609, lucene-queries-5.2.1.jar
-10610, lucene-queryparser-5.2.1.jar
-10611, lucene-sandbox-5.2.1.jar
-10532, spatial4j-0.4.1.jar
-10566, spring-aop-4.2.1.RELEASE.jar
-10567, spring-beans-4.2.1.RELEASE.jar
-10568, spring-context-4.2.1.RELEASE.jar
-10569, spring-core-4.2.1.RELEASE.jar
-10570, spring-expression-4.2.1.RELEASE.jar
-10571, spring-web-4.2.1.RELEASE.jar
-10572, spring-webmvc-4.2.1.RELEASE.jar
-
-2108, (& (= Implementation-Version "1.1.2")(= Extension-Name "org.apache.taglibs.standard"))
-7294, (& (= Implementation-Title "javax.el")(regex "^3\.0(?:\.[^\d]+)?$" Implementation-Version))
-
-12206, javax.measure.unit-api_1.0.0.jar
-12206, javax.measure:unit-api:bundle:1.0
-12518, tec.uom.lib.uom-lib-common_1.0.1.jar
-12518, tec.uom.lib:uom-lib-common:bundle:1.0.1
-
-1981, javax.el:el-api:*:2.1
-
-15613, com.google.errorprone:error_prone_annotations:jar:2.0.18:compile
-15612, com.google.j2objc:j2objc-annotations:jar:1.1:compile
-15614, com.squareup.moshi:moshi:jar:1.4.0:compile
-15610, com.squareup.okhttp3:logging-interceptor:jar:3.8.1:compile
-15615, com.squareup.retrofit2:converter-moshi:jar:2.3.0:compile
-15616, com.squareup.retrofit2:retrofit:jar:2.3.0:compile
-15617, org.apache.commons:commons-dbcp2:jar:2.2.0:compile
-15618, org.apache.commons:commons-pool2:jar:2.5.0:compile
-15619, org.checkerframework:checker-qual:jar:2.0.0:compile
-15620, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
-
-com.eclipsesource.jaxrs.provider.gson_2.3.0.201602281253.jar
-com.eclipsesource.jaxrs.provider.security_2.2.0.201602281253.jar
-
-# This is correct, but the versions don't match.
-14003, com.eclipsesource.jaxrs.publisher_5.3.1.201602281253.jar
-
-13847, io.netty.common_4.1.9.Final.jar
-13848, org.apache.activemq.artemis-mqtt-protocol_2.1.0.jar
-13849, org.apache.activemq.artemis-native_2.1.0.jar
-10810, org.apache.camel.camel-core-osgi_2.16.0.jar
-10812, org.apache.camel.camel-kura_2.16.0.jar
-13845, org.apache.geronimo.specs.geronimo-jms_2.0_spec_1.0.0.alpha-2.jar
-13846, org.apache.geronimo.specs.geronimo-json_1.0_spec_1.0.0.alpha-1.jar
-11966, org.h2_1.4.192.jar
-13843, org.jboss.logging.jboss-logging_3.3.1.Final.jar
-12230, org.objenesis_2.4.0.jar
-11704, osgi.annotation_6.0.1.201503162037.jar
-
-11561, com.eclipsesource:com.eclipsesource.jaxrs.provider.gson:eclipse-plugin:2.3.0-SNAPSHOT
-11561, com.eclipsesource:com.eclipsesource.jaxrs.provider.security:eclipse-plugin:2.2.0-SNAPSHOT
-11561, com.eclipsesource:com.eclipsesource.jaxrs.publisher:eclipse-plugin:5.3.1-SNAPSHOT
-13848, org.apache.activemq:artemis-mqtt-protocol:bundle:2.1.0
-13849, org.apache.activemq:artemis-native:bundle:2.1.0
-10810, org.apache.camel:camel-core-osgi:bundle:2.16.0
-10812, org.apache.camel:camel-kura:bundle:2.16.0
-13845, org.apache.geronimo.specs:geronimo-jms_2.0_spec:bundle:1.0-alpha-2
-13846, org.apache.geronimo.specs:geronimo-json_1.0_spec:bundle:1.0-alpha-1
-13843, org.jboss.logging:jboss-logging:jar:3.3.1.Final
-org.jctools:jctools-core:bundle:2.0.1
-11704, org.osgi:osgi.annotation:jar:6.0.1
-
-iot.kura, (& (= Built-By "genie.kura") (glob "com.gwt.user_*" file))
-
-iot.4diac, org.eclipse.fordiac.*
-
-10201, (& (= Bundle-SymbolicName "org.apache.ant")(compat Implementation-Version "1.9.6"))
-9232, (& (= Bundle-SymbolicName "org.junit")(compat Bundle-Version "4.12.0"))
-
-9741, org.mozilla.javascript_1.7.6.*.jar
-3176, org.mozilla.javascript_1.7.1.*.jar
-
-10583,unknown, asm:asm:jar:3.1:*
-15981, com.101tec:zkclient:jar:0.10:provided
-10826, com.datastax.cassandra:cassandra-driver-core:jar:3.0.0:provided
-10826, com.datastax.cassandra:cassandra-driver-mapping:jar:3.0.0:provided
-14202, com.esotericsoftware:kryo-shaded:jar:3.0.3:compile
-14202, com.esotericsoftware:kryo-shaded:jar:3.0.3:provided
-9247, com.esotericsoftware:minlog:jar:1.3.0:compile
-9247, com.esotericsoftware:minlog:jar:1.3.0:provided
-13281, com.fasterxml.jackson.core:jackson-core:jar:2.6.5:*
-13283, com.fasterxml.jackson.core:jackson-databind:jar:2.6.5:compile
-unknown, com.fasterxml.jackson.module:jackson-module-paranamer:jar:2.6.5:provided
-unknown, com.fasterxml.jackson.module:jackson-module-scala_2.11:jar:2.6.5:provided
-14554, com.github.ben-manes.caffeine:caffeine:jar:2.5.6:compile
-16003, com.google.code.gson:gson:jar:2.8.1:compile
-10026, com.google.inject.extensions:guice-servlet:jar:3.0:provided
-5058, com.google.inject:guice:jar:3.0:provided
-10590, com.google.protobuf:protobuf-java:jar:2.5.0:compile
-unknown, com.jamesmurty.utils:java-xmlbuilder:jar:0.4:provided
-unknown, com.jamesmurty.utils:java-xmlbuilder:jar:1.0:provided
-12801, com.lmax:disruptor:jar:3.3.0:compile
-10593, commons-beanutils:commons-beanutils-core:jar:1.8.0:compile
-12804, commons-el:commons-el:jar:1.0:provided
-12806, commons-httpclient:commons-httpclient:jar:3.1:compile
-unknown, commons-pool:commons-pool:jar:1.5.4:provided
-unknown, com.ning:compress-lzf:jar:1.0.3:provided
-12809, com.sun.jersey.contribs:jersey-guice:jar:1.9:provided
-12809, com.sun.jersey:jersey-client:jar:1.9:provided
-12809, com.sun.jersey:jersey-core:jar:1.9:compile
-12809, com.sun.jersey:jersey-json:jar:1.9:provided
-12809, com.sun.jersey:jersey-server:jar:1.9:compile
-10625, com.sun.xml.bind:jaxb-impl:jar:2.2.11:compile
-unknown, com.twitter:chill_2.11:jar:0.8.0:provided
-unknown, com.twitter:chill-java:jar:0.8.0:provided
-unknown, com.univocity:univocity-parsers:jar:2.2.1:provided
-14205, com.vividsolutions:jts-core:jar:1.14.0:compile
-16011, com.vividsolutions:jts-io:jar:1.14.0:provided
-13284, com.vlkan:flatbuffers:jar:1.2.0-3f79e055:compile
-9083, com.yammer.metrics:metrics-core:jar:2.2.0:compile
-11799, de.topobyte:adt-geo:jar:0.0.2:compile
-11800, de.topobyte:adt-graph:jar:0.0.1:compile
-11801, de.topobyte:adt-multicollections:jar:0.0.3:compile
-
-CQ Third-Party Code License Use
-7812 docbook-fo.xsl Version: r279 Apache License 2.0 modified source
-8350 JUnit Version: 4.5 (Including Hamcrest Core Jar 1.1) - SUBSET using Hamcrest Core files only New BSD license, Common Public License 1.0 unmodified source and binary
-8351 Java Transaction (JTA) Version: 1.1 Common Development and Distribution License unmodified binary
-8352 Logback Classic Version: 1.1.1 Eclipse Public License unmodified binary
-8356 jts Version: 1.13 GNU Library or 'Lesser' General Public License (LGPL) 2.1 unmodified binary
-8427 org.joda.time Version: 2.3 Apache License 2.0 unmodified binary
-8432 joda-convert Version: 1.6 Apache License, 2.0 unmodified binary
-8435 Apache Commons Pool 1.6 Version: 1.6 Apache License 2.0 unmodified binary
-8436 commons-codec Version: 1.8 Apache License, 2.0 unmodified binary
-8437 xerces-impl Version: 2.10.0 Apache License, 2.0, W3C unmodified binary
-8497 accumulo Version: 1.5.1 Apache License, 2.0, BSD (Three Files) unmodified source and binary
-8498 Apache Commons Pool 1.6 Version: 1.6 Apache License 2.0 unmodified binary
-8499 Jackson (Core and Mapper) Version: 1.9.3 Apache License, 2.0 unmodified binary
-8500 org.apache.commons.commons-vfs2 Version: 2.0 Apache License, 2.0 unmodified binary
-8501 com.typesafe.scalalogging-slf4j_2.10 Version: 1.1.0 Apache License, 2.0 unmodified binary
-8502 slf4j-api Version: 1.7.5 MIT License + MIT License with no endorsement clause unmodified binary
-8503 Logback Classic Version: 1.1.1 Eclipse Public License unmodified binary
-8505 ZooKeeper Version: 3.4.5 Apache License 2.0 unmodified binary
-8506 Apache Avro Version: 1.7.5 Apache License, 2.0 unmodified binary
-8508 Guava Version: 11.0.2 Apache License 2.0 unmodified binary
-8510 JUnit Version: 4.5 (Including Hamcrest Core Jar 1.1) - SUBSET using Hamcrest Core files only Common Public License 1.0, New BSD (Hamcrest Core) unmodified binary
-8530 GeoTools Version: 11.2 *Subset* GNU Library or Lesser General Public License version 2.1 (LGPL), MIT, Apache 1.1 Style, Apache License, 2.0, W3C, Public Domain unmodified binary
-8531 Scala Version: 2.11.7 New BSD license unmodified binary
-8558 scalding (maple, core, args, date) 2.10 Version: 0.11.2 Apache License, 2.0 unmodified binary
-8580 Apache Commons CSV Version: 1.0 Apache License, 2.0 unmodified binary
-8581 Calrissian Mango mango-core Version: 1.2.0 Apache License, 2.0 unmodified binary
-8669 paranamer Version: 2.3 New BSD license unmodified binary
-8671 Apache Commons Compress Version: 1.4.1 Apache License, 2.0 unmodified binary
-8672 xz Version: 1.0 Public Domain unmodified binary
-8676 jdom Version: 1.1.3 JDom License (based on Apache 1.1 Style License) unmodified binary
-8686 stax-api 1.0.1 Version: jar Apache License, 2.0 unmodified binary
-8689 janino Version: 2.6.1 New BSD license unmodified binary
-8692 Apache Log4j Version: 1.2.17 Apache License, 2.0 unmodified binary
-8693 Javax Activation Version: 1.1 Common Development and Distribution License unmodified binary
-8696 Apache HttpComponents Client Version: 4.1.3 Apache License, 2.0 unmodified binary
-8697 Apache Commons IO Version: 2.1 Apache License, 2.0 unmodified binary
-8698 commons-collections Version: 3.2.1 Apache License, 2.0 unmodified binary
-8701 minlog Version: 1.2 New BSD license unmodified binary
-8702 kryo Version: 2.21 New BSD License, Apache License 2.0 (Two Files) unmodified binary
-8703 asm Version: 4.0 New BSD license unmodified binary
-8705 cascading (local, hadoop, and core ) Version: 2.5.5 Apache License, 2.0 unmodified binary
-8706 Riffle Version: 0.1-dev Apache License, 2.0 unmodified binary
-8710 jcommander Version: 1.30 Apache License, 2.0 unmodified binary
-8711 regexp Version: 1.3 Apache Software License 1.1 unmodified binary
-8712 reflectasm Version: 1.07 New BSD license unmodified binary
-8714 JavaEwah Version: 0.6.6 Apache License, 2.0 unmodified binary
-8716 json-simple Version: 1.1 Apache License, 2.0 unmodified binary
-8717 commons-collections Version: 3.1 Apache License, 2.0 unmodified binary
-8718 xml-apis Version: 1.3.04 Apache License, 2.0, Public Domain, W3C unmodified binary
-8720 picocontainer Version: 1.2 New BSD license unmodified binary
-8727 hsqldb Version: 2.3.0 New BSD license unmodified binary
-8728 Apache Thrift Version: 0.9.0 Apache License, 2.0 unmodified binary
-8731 plexus-utils Version: 1.5.6 MIT, Apache 2.0, Apache 1.1, BSD, Public Domain, Indiana University Extreme! Lab Software License V1.1.1 (Apache 1.1 style) unmodified binary
-8732 Apache Commons Lang Version: 2.6 Apache License, 2.0 unmodified binary
-8733 Apache Commons Logging Jar Version: 1.1.1 Apache License, 2.0 unmodified binary
-8734 resolver.jar Version: 1.2 Apache License, 2.0 unmodified binary
-8735 Apache HttpComponents Core Version: 4.1.3 Apache License, 2.0 unmodified binary
-8736 commons-net Version: 3.3 Apache License, 2.0 unmodified binary
-8737 algebird-core Version: 0.7.0 Apache License, 2.0 unmodified binary
-8738 bijection Version: 0.6.3 Apache License, 2.0 unmodified binary
-8741 chill Version: 0.4.0 Apache License, 2.0, Public Domain, New BSD License unmodified binary
-8985 scalatra Version: 2.3.0 New BSD License unmodified binary
-9081 Apache Commons Lang Version: 3.3.2 Apache License 2.0 unmodified binary
-9083 Metrics (core, reporting, utils) Version: 2.2.0 Apache License, 2.0 unmodified binary
-9084 ZKclient Version: 0.3 Apache License, 2.0 unmodified binary
-9085 Google Guava Version: 18.0 Apache License 2.0 unmodified binary
-9246 kryo Version: 3.0.0 New BSD License, Apache License 2.0 (Two Files) unmodified binary
-9247 minlog Version: 1.3.0 New BSD license unmodified binary
-9248 imgscalr Version: 4.2 Apache License, 2.0 unmodified binary
-9331 Typesafe Config Version: 1.2.1 Apache License, 2.0 unmodified binary
-9350 spire_2.10-0.9.0 Version: 0.9.0 MIT License unmodified source and binary
-9353 Apache Commons IO Version: 2.4 Apache License, 2.0 unmodified binary
-9356 Spring Security Version: 3.1.0 Apache License, 2.0, MIT Style License (One File) unmodified binary
-9440 scalding Version: 0.13.1 (Args, Core, Date) Apache License, 2.0 unmodified binary
-9578 Apache Camel Core Version: 2.15.1 Apache License, 2.0 unmodified binary
-9579 accumulo 1.6.2 Version: 1.6.2 Apache License, 2.0, BSD (Three Files) unmodified source and binary
-9751 accumulo 1.7.0 Version: 1.7.0 Apache License, 2.0 unmodified source and binary
-9764 geotools Version: 14-M1 GNU Library or Lesser General Public License version 2.1 (LGPL), MIT, Apache 1.1 Style, Apache License, 2.0, W3C, Public Domain, New BSD License unmodified binary
-9765 jai-ext Version: 1.0.3 Apache License, 2.0 unmodified binary
-9766 ejml Version: 0.26 Apache License, 2.0 unmodified binary
-9961 Apache HBase Version: 1.0.0 (Subset Excludes Bootstrap and jQuery) Apache License, 2.0, Public Domain, New BSD License unmodified source and binary
-9964 scala-logging Version: 2.1.2 Apache License, 2.0 unmodified binary
-9965 scalding repl Version: 0.13.1 Apache License, 2.0 unmodified binary
-10154 Apache Spark Version: 1.5.0 (Core, SQL, Yarn) Apache License, 2.0 unmodified binary
-10155 Apache MetaModel Version: 4.3.6 Apache License, 2.0 unmodified binary
-10298 grizzled-slf4j_2.10 Version: 1.0.2 BSD License unmodified binary
-10299 scalding-maple Version: 0.13.1 Apache License, 2.0, Public Domain unmodified binary
-10300 curator-recipes, curator-framework, curator-client Version: 2.7.1 Apache License, 2.0 unmodified binary
-10301 Objenesis Version: 1.0 (Subset, Custom) MIT License modified binary
-10303 mime-util Version: 2.1.3 Apache License, 2.0 unmodified binary
-10304 net.iharder.base64 Version: 2.3.8 Public Domain unmodified binary
-10305 juniversalchardet Version: 1.0.3 Mozilla Public License 1.1 (MPL) unmodified binary
-10306 cascading-core, cascading-local, cascading-hadoop Version: 2.6.1 Apache License, 2.0 unmodified binary
-10307 janino Version: 2.7.5 New BSD License unmodified binary
-10308 chill Version: 0.5.2 Apache License, 2.0, Public Domain, New BSD License unmodified binary
-10309 bijection Version: 0.7.2 Apache License, 2.0 unmodified binary
-10310 algebird Version: 0.9.0 Apache License, 2.0 unmodified binary
-10311 jaxb api Version: 2.2.7 Common Development and Distribution License unmodified source and binary
-10312 istack-commons-runtime Version: 2.16 Common Development and Distribution License unmodified binary
-10313 fastinfoset Version: 1.2.12 Apache License, 2.0, Apache Software License 1.1 (One File), Apache 1.1 Style (One File) unmodified binary
-10414 Apache Commons Math Version: 3.5.0 Apache License, 2.0 unmodified binary
-10556 metadata-extractor Version: 2.8.1 Apache License, 2.0, New BSD License (One File) unmodified binary
-10583 asm Version: 3.1 New BSD License unmodified binary
-10584 Adobe XMP Core Version: 5.1.2 New BSD license unmodified binary
-10585 jcommander Version: 1.48 Apache License, 2.0 unmodified binary
-10586 findbugs-annotations Version: 1.3.9-1 Apache License, 2.0 unmodified binary
-10587 Google Gson Version: 2.3.1 Apache License, 2.0 modified binary
-10588 Google Guava Version: 14.0.1 Apache License, 2.0 unmodified binary
-10589 Google Guava Version: 17.0 Apache License, 2.0 unmodified binary
-10590 Protocol Buffers Version: 2.5.0 New BSD license unmodified binary
-10591 Jayway JsonPath Version: 2.0.0 Apache License, 2.0 unmodified binary
-10592 Apache Jakarta Commons BeanUtils Version: 1.7 Apache License, 2.0 unmodified binary
-10593 Apache Jakarta Commons BeanUtils Version: 1.8 Apache License, 2.0 unmodified binary
-10594 Apache Commons Command Line Interface CLI Version: 1.2 Apache License, 2.0 unmodified binary
-10595 Apache Commons codec Version: 1.9 Apache License, 2.0 unmodified binary
-10596 commons configuration Version: 1.6 Apache License, 2.0 unmodified binary
-10597 Apache Jakarta Commons Digester Version: 1.8 Apache License, 2.0 unmodified binary
-10599 Commons Logging 1.2 Apache License, 2.0 unmodified binary
-10601 paranamer Version: 2.6 New BSD License unmodified binary
-10602 scala logging Version: 3.1.0 Apache License, 2.0 unmodified binary
-10603 netty Version: 4.0.23 Apache License 2.0, Public Domain, New BSD License, MIT unmodified binary
-10615 Apache Thrift Version: 0.9.1 Apache License, 2.0 unmodified binary
-10625 JAXB IMPL Version: 2.2.11 FINAL Common Development and Distribution License unmodified binary
-10626 jaxb ri version: 2.2.11 Common Development and Distribution License, Public Domain (One File) unmodified binary
-10628 jsr275 Version: 1.0-beta-2 BSD Style License unmodified binary
-10629 JSON Smart Version: 2.1.1 Apache License, 2.0 unmodified binary
-10630 json smart asm Version: 1.0.2 Apache License, 2.0 unmodified binary
-10631 json4s (core, ast, native) Version: 3.2.10 Apache License, 2.0 unmodified binary
-10632 Apache Commons Math Version: 2.1.0 Apache License, 2.0, New BSD license unmodified binary
-10633 Apache Curator Version: 2.4.0 Apache License, 2.0 unmodified binary
-10634 htrace Version: 3.1.0-incubating Apache License, 2.0 unmodified binary
-10635 Jruby Jcodings Version: 1.0.8 MIT License unmodified binary
-10636 Jruby Joni Version: 2.1.2 MIT License unmodified binary
-10637 scala-xml Version: 1.0.5 New BSD license unmodified binary
-10638 scala-parser-combinators Version: 1.0.4 New BSD license unmodified binary
-10639 scalatra rl Version: 0.4.10 MIT License unmodified binary
-10640 slf4j-log4j Version: 1.7.5 MIT License unmodified binary
-10641 xml-apis Version: 1.4.01 Apache License, 2.0, Public Domain, W3C unmodified binary
-10642 jetty-util Version: 6.1.26 Apache License, 2.0 unmodified binary
-10644 jai-ext Version: 1.0.8 Apache License, 2.0 unmodified binary
-10648 geotools Version: 14.1 GNU Library or Lesser General Public License version 2.1 (LGPL), MIT, Apache 1.1 Style, Apache License, 2.0, W3C, Public Domain, New BSD License unmodified source
-10649 geographicLib Version: 1.44 MIT License unmodified binary
-10703 GDAL Java JNI Bindings Version: 2.0.0 MIT License unmodified binary
-10730 Guava Version: 12.0 Apache License, 2.0 unmodified binary
-10766 EPSG Geodetic Parameter Dataset Version: 8.6 EPSG Terms of Use unmodified binary
-11008 Metrics (core, ganglia, graphite) Version: 3.1.2 Apache License, 2.0 unmodified binary
-11037 Apache Commons Pool Version: 2.2 Apache License, 2.0, Public Domain (One File) unmodified binary
-11072 commons-collections Version: 3.2.2 Apache License, 2.0 unmodified binary
-11133 aws-java-sdk Version: 1.10.62 *CUSTOM* Apache License, 2.0, Public Domain, MIT License unmodified binary
-11377 Stream Lib Version: 2.9.1 (com.clearspring.analytics) Apache License, 2.0 unmodified binary
-11666 json4s ext Version: 3.2.10 Apache License, 2.0 unmodified binary
-11685 Apache Commons JXPath 1.3 Version: 1.3 Apache License, 2.0 unmodified binary
-11790 Protocol Buffers Version: 2.6.1 New BSD License unmodified binary
-11791 h2 database Version: 1.4.192 Eclipse Public License unmodified binary
-11792 osm4j Core Version: 0.0.18 (geometry (0.14), pbf (0.7), tbo (0.9), utils (0.22), xml (0.3) GNU Lesser General Public License (LGPL) Version 3.0, Apache 2.0 (One File) unmodified binary
-11793 melon-io Version: 0.0.1 GNU Lesser General Public License version 3.0 (LGPL) unmodified binary
-11794 large-scale-file-io Version: 0.0.1 GNU Lesser General Public License version 3.0 (LGPL) unmodified binary
-11795 jts-utils Version: 0.0.4 GNU Lesser General Public License version 3.0 (LGPL) unmodified binary
-11796 de.topobyte:jsi Version: 1.1.0 GNU Lesser General Public License Version 2.1 unmodified binary
-11797 de.topobyte:dynsax Version: 0.0.1 GNU Lesser General Public License (LGPL) Version 3.0 unmodified binary
-11798, de.topobyte:compact-io:jar:0.0.5:compile
-11797, de.topobyte:dynsax:jar:0.0.1:compile
-11796, de.topobyte:jsi:jar:1.1.0:compile
-11795, de.topobyte:jts-utils:jar:0.0.4:compile
-11794, de.topobyte:large-scale-file-io:jar:0.0.1:compile
-11793, de.topobyte:melon-io:jar:0.0.1:compile
-11792, de.topobyte:osm4j-core:jar:0.0.18:compile
-11792, de.topobyte:osm4j-geometry:jar:0.0.14:compile
-11792, de.topobyte:osm4j-pbf:jar:0.0.7:compile
-11792, de.topobyte:osm4j-tbo:jar:0.0.9:compile
-11792, de.topobyte:osm4j-utils:jar:0.0.22:compile
-11792, de.topobyte:osm4j-xml:jar:0.0.3:compile
-unknown, info.ganglia.gmetric4j:gmetric4j:jar:1.0.7:provided
-15257, io.airlift:aircompressor:jar:0.8:compile
-15258, io.airlift:slice:jar:0.29:compile
-11008, io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
-11008, io.dropwizard.metrics:metrics-ganglia:jar:3.1.2:compile
-11008, io.dropwizard.metrics:metrics-json:jar:3.1.2:provided
-13285, io.netty:netty-all:jar:4.0.41.Final:compile
-13285, io.netty:netty-buffer:jar:4.0.41.Final:compile
-13285, io.netty:netty-codec:jar:4.0.41.Final:compile
-13285, io.netty:netty-common:jar:4.0.41.Final:compile
-13285, io.netty:netty-handler:jar:4.0.41.Final:compile
-13285, io.netty:netty:jar:3.6.2.Final:provided
-13285, io.netty:netty-transport:jar:4.0.41.Final:compile
-15194, it.geosolutions.jaiext.affine:jt-affine:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.algebra:jt-algebra:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.bandcombine:jt-bandcombine:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.bandmerge:jt-bandmerge:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.bandselect:jt-bandselect:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.border:jt-border:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.buffer:jt-buffer:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.classifier:jt-classifier:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.colorconvert:jt-colorconvert:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.colorindexer:jt-colorindexer:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.crop:jt-crop:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.errordiffusion:jt-errordiffusion:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.format:jt-format:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.imagefunction:jt-imagefunction:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.iterators:jt-iterators:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.lookup:jt-lookup:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.mosaic:jt-mosaic:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.nullop:jt-nullop:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.orderdither:jt-orderdither:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.piecewise:jt-piecewise:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.rescale:jt-rescale:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.rlookup:jt-rlookup:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.scale:jt-scale:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.stats:jt-stats:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.translate:jt-translate:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.utilities:jt-utilities:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.vectorbin:jt-vectorbin:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.warp:jt-warp:jar:1.0.16:compile
-15194, it.geosolutions.jaiext.zonal:jt-zonal:jar:1.0.16:compile
-12817, javax.inject:javax.inject:jar:1:provided
-10950, javax.mail:mail:jar:1.4.7:provided
-8930, javax.media:jai_codec:jar:1.1.3:provided
-8930, javax.media:jai_core:jar:1.1.3:provided
-10604, javax.media:jai_imageio:jar:1.1:provided
-1980, javax.servlet.jsp:jsp-api:jar:2.1:provided
-1961, javax.servlet:servlet-api:jar:2.5:provided
-1263, javax.xml.bind:jaxb-api:jar:2.0:provided
-1617, javax.xml.bind:jaxb-api:jar:2.0:provided
-1710, javax.xml.bind:jaxb-api:jar:2.0:provided
-2686, javax.xml.bind:jaxb-api:jar:2.1:provided
-3005, javax.xml.bind:jaxb-api:jar:2.1.9:provided
-3428, javax.xml.bind:jaxb-api:jar:2.1.12:provided
-3670, javax.xml.bind:jaxb-api:jar:2.2.0:provided
-4036, javax.xml.bind:jaxb-api:jar:2.1.7:provided
-7649, javax.xml.bind:jaxb-api:jar:2.2.7:provided
-8374, javax.xml.bind:jaxb-api:jar:2.2.12:provided
-11294, javax.xml.bind:jaxb-api:jar:2.2.9:provided
-unknown, jgridshift:jgridshift:jar:1.0:provided
-unknown, jline:jline:jar:1.0:provided
-unknown, mx4j:mx4j:jar:3.0.2:provided
-unknown, net.java.dev.jets3t:jets3t:jar:0.9.0:provided
-unknown, net.java.dev.jets3t:jets3t:jar:0.9.3:provided
-11802, net.jpountz.lz4:lz4:jar:1.3.0:compile
-unknown, net.razorvine:pyrolite:jar:4.13:provided
-unknown, net.sf.py4j:py4j:jar:0.10.4:provided
-11876, net.sf.saxon:Saxon-HE:jar:9.7.0-20:compile
-11803, net.sf.trove4j:trove4j:jar:3.0.3:compile
-unknown, org.acplt:oncrpc:jar:1.0.7:provided
-14208, org.apache.accumulo:accumulo-core:jar:1.8.1:compile
-14208, org.apache.accumulo:accumulo-fate:jar:1.8.1:compile
-14208, org.apache.accumulo:accumulo-server-base:jar:1.8.1:provided
-14208, org.apache.accumulo:accumulo-start:jar:1.8.1:compile
-13978, org.apache.arrow:arrow-format:jar:0.6.0:compile
-13978, org.apache.arrow:arrow-memory:jar:0.6.0:compile
-13978, org.apache.arrow:arrow-vector:jar:0.6.0:compile
-8506, org.apache.avro:avro-ipc:jar:1.7.5:provided
-8506, org.apache.avro:avro-ipc:jar:tests:1.7.5:provided
-8506, org.apache.avro:avro-mapred:jar:hadoop2:1.7.5:provided
-9578, org.apache.camel:camel-scala:jar:2.15.1:compile
-unknown, org.apache.commons:commons-crypto:jar:1.0.0:provided
-14209, org.apache.commons:commons-csv:jar:1.5:compile
-16004, org.apache.commons:commons-lang3:jar:3.6:provided
-unknown, org.apache.commons:commons-math3:jar:3.6.1:provided
-12816, org.apache.commons:commons-math:jar:2.2:compile
-16002, org.apache.commons:commons-pool2:jar:2.4.2:compile
-12053 , org.apache.commons:commons-vfs2:jar:2.1:compile
-10633, org.apache.curator:curator-client:jar:2.4.0:compile
-10300, org.apache.curator:curator-client:jar:2.7.1:compile
-unknown, org.apache.curator:curator-framework:jar:2.6.0:provided
-10633, org.apache.curator:curator-recipes:jar:2.4.0:compile
-10300, org.apache.curator:curator-recipes:jar:2.7.1:compile
-unknown, org.apache.directory.api:api-asn1-api:jar:1.0.0-M20:provided
-unknown, org.apache.directory.api:api-util:jar:1.0.0-M20:provided
-unknown, org.apache.directory.server:apacheds-i18n:jar:2.0.0-M15:provided
-unknown, org.apache.directory.server:apacheds-kerberos-codec:jar:2.0.0-M15:provided
-
-# We need some kind of "workswith" flag
-#8504, (& (= project "locationtech.geomesa")(= groupid "org.apache.hadoop")(>= version 2.2))
-#11613, (& (= project "locationtech.geomesa")(= groupid "org.apache.hbase")(>= version "1.1.5"))
-
-15256, org.apache.hive:hive-storage-api:jar:2.2.1:compile
-10634, org.apache.htrace:htrace-core:jar:3.1.0-incubating:compile
-5926, org.apache.httpcomponents:httpclient:jar:4.1.2:provided
-8696, org.apache.httpcomponents:httpclient:jar:4.1.3:provided
-7226, org.apache.httpcomponents:httpclient:jar:4.2.5:provided
-7656, org.apache.httpcomponents:httpcore:jar:4.2.5:provided
-8478, org.apache.httpcomponents:httpcore:jar:4.3.2:provided
-8735, org.apache.httpcomponents:httpcore:jar:4.1.3:provided
-5925, org.apache.httpcomponents:httpcore:jar:4.1.4:provided
-7158, org.apache.httpcomponents:httpcore:jar:4.2.4:provided
-unknown, org.apache.ivy:ivy:jar:2.4.0:provided
-unknown, org.apache.kafka:kafka_2.11:jar:1.0.1:provided
-unknown, org.apache.kafka:kafka-clients:jar:1.0.1:provided
-10155, org.apache.metamodel:MetaModel-core:jar:4.3.6:compile
-10155, org.apache.metamodel:MetaModel-pojo:jar:4.3.6:compile
-15255, org.apache.orc:orc-core:jar:1.4.1:compile
-15255, org.apache.orc:orc-mapreduce:jar:1.4.1:compile
-13799, org.apache.parquet:parquet-column:jar:1.9.0:compile
-13799, org.apache.parquet:parquet-common:jar:1.9.0:provided
-13799, org.apache.parquet:parquet-encoding:jar:1.9.0:provided
-13800, org.apache.parquet:parquet-format:jar:2.3.1:compile
-13799, org.apache.parquet:parquet-hadoop:jar:1.9.0:compile
-13799, org.apache.parquet:parquet-jackson:jar:1.9.0:provided
-unknown, org.apache.spark:spark-catalyst_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-core_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-launcher_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-network-common_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-network-shuffle_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-sketch_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-sql_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-tags_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-unsafe_2.11:jar:2.2.0:provided
-unknown, org.apache.spark:spark-yarn_2.11:jar:2.2.0:provided
-14211, org.apache.thrift:libthrift:jar:0.9.3:compile
-unknown, org.apache.xbean:xbean-asm5-shaded:jar:4.4:provided
-8734, org.apache.xml:xml-commons-resolver:jar:1.2:compile
-9421, org.bouncycastle:bcprov-jdk15on:jar:1.51:provided
-8581, org.calrissian.mango:mango-core:jar:1.2.0:compile
-10298, org.clapper:grizzled-slf4j_2.11:jar:1.0.2:compile
-8499, org.codehaus.jackson:jackson-core-asl:jar:1.9.3:provided
-12826, org.codehaus.jackson:jackson-jaxrs:jar:1.9.3:provided
-8499, org.codehaus.jackson:jackson-xc:jar:1.9.3:provided
-10307, org.codehaus.janino:commons-compiler:jar:2.7.5:provided
-10307, org.codehaus.janino:janino:jar:2.7.5:provided
-unknown, org.codehaus.jettison:jettison:jar:1.1:provided
-unknown, org.fusesource.leveldbjni:leveldbjni-all:jar:1.8:provided
-14555, org.geotools:gt-api:jar:18.0:compile
-14555, org.geotools:gt-coverage:jar:18.0:compile
-14555, org.geotools:gt-cql:jar:18.0:compile
-14555, org.geotools:gt-data:jar:18.0:compile
-14555, org.geotools:gt-epsg-hsql:jar:18.0:compile
-14555, org.geotools:gt-geojson:jar:18.0:compile
-14555, org.geotools:gt-geotiff:jar:18.0:compile
-14555, org.geotools:gt-graph:jar:18.0:compile
-14555, org.geotools:gt-grid:jar:18.0:compile
-14555, org.geotools:gt-imageio-ext-gdal:jar:18.0:compile
-14555, org.geotools:gt-main:jar:18.0:compile
-14555, org.geotools:gt-metadata:jar:18.0:compile
-14555, org.geotools:gt-opengis:jar:18.0:compile
-14555, org.geotools:gt-process-feature:jar:18.0:compile
-14555, org.geotools:gt-process:jar:18.0:compile
-14555, org.geotools:gt-referencing:jar:18.0:compile
-14555, org.geotools:gt-render:jar:18.0:compile
-14555, org.geotools:gt-shapefile:jar:18.0:compile
-14555, org.geotools:gt-transform:jar:18.0:compile
-14555, org.geotools:gt-xml:jar:18.0:compile
-14555, org.geotools.ogc:net.opengis.fes:jar:18.0:compile
-14555, org.geotools.ogc:net.opengis.ows:jar:18.0:compile
-14555, org.geotools.ogc:net.opengis.wfs:jar:18.0:compile
-14555, org.geotools.ogc:org.w3.xlink:jar:18.0:compile
-14555, org.geotools.xsd:gt-xsd-core:jar:18.0:compile
-14555, org.geotools.xsd:gt-xsd-fes:jar:18.0:compile
-14555, org.geotools.xsd:gt-xsd-filter:jar:18.0:compile
-14555, org.geotools.xsd:gt-xsd-gml2:jar:18.0:compile
-14555, org.geotools.xsd:gt-xsd-gml3:jar:18.0:compile
-14555, org.geotools.xsd:gt-xsd-ows:jar:18.0:compile
-14555, org.geotools.xsd:gt-xsd-wfs:jar:18.0:compile
-unknown, org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b34:provided
-unknown, org.glassfish.hk2.external:javax.inject:jar:2.4.0-b34:provided
-unknown, org.glassfish.hk2:hk2-api:jar:2.4.0-b34:provided
-unknown, org.glassfish.hk2:hk2-locator:jar:2.4.0-b34:provided
-unknown, org.glassfish.hk2:hk2-utils:jar:2.4.0-b34:provided
-unknown, org.glassfish.hk2:osgi-resource-locator:jar:1.0.1:provided
-unknown, org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.22.2:provided
-unknown, org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.22.2:provided
-unknown, org.glassfish.jersey.containers:jersey-container-servlet:jar:2.22.2:provided
-unknown, org.glassfish.jersey.core:jersey-client:jar:2.22.2:provided
-unknown, org.glassfish.jersey.core:jersey-common:jar:2.22.2:provided
-unknown, org.glassfish.jersey.core:jersey-server:jar:2.22.2:provided
-unknown, org.glassfish.jersey.media:jersey-media-jaxb:jar:2.22.2:provided
-8727, org.hsqldb:hsqldb:jar:2.3.0:compile
-unknown, org.htrace:htrace-core:jar:3.0.4:provided
-unknown, org.jaitools:jt-utils:jar:1.4.0:provided
-unknown, org.jaitools:jt-zonalstats:jar:1.4.0:provided
-12827, org.jamon:jamon-runtime:jar:2.4.1:compile
-unknown, org.javassist:javassist:jar:3.18.1-GA:provided
-8676, org.jdom:jdom:jar:1.1.3:compile
-8427, org.joda:joda-convert:jar:1.6:compile
-10635, org.jruby.jcodings:jcodings:jar:1.0.8:compile
-10636, org.jruby.joni:joni:jar:2.1.2:compile
-10631, org.json4s:json4s-ast_2.11:jar:3.2.10:compile
-10631, org.json4s:json4s-core_2.11:jar:3.2.10:compile
-unknown, org.json4s:json4s-jackson_2.11:jar:3.2.11:provided
-10631, org.json4s:json4s-native_2.11:jar:3.2.10:compile
-unknown, org.lz4:lz4-java:jar:1.4:provided
-12814, org.mortbay.jetty:jetty:jar:6.1.26:provided
-10642, org.mortbay.jetty:jetty-util:jar:6.1.26:compile
-11990, org.parboiled:parboiled-core:jar:1.1.7:provided
-11990, org.parboiled:parboiled-scala_2.11:jar:1.1.7:compile
-11990, org.parboiled:parboiled-scala_2.11:jar:1.1.7:provided
-unknown, org.roaringbitmap:RoaringBitmap:jar:0.5.11:provided
-14213 , org.scala-lang.modules:scala-parser-combinators_2.11:jar:1.0.6:compile
-14214, org.scala-lang.modules:scala-xml_2.11:jar:1.0.6:compile
-8531, org.scala-lang:scala-compiler:jar:2.11.7:provided
-8531, org.scala-lang:scala-library:jar:2.11.7:provided
-8531, org.scala-lang:scalap:jar:2.11.7:compile
-8531, org.scala-lang:scala-reflect:jar:2.11.7:provided
-10639, org.scalatra.rl:rl_2.11:jar:0.4.10:compile
-8985, org.scalatra:scalatra_2.11:jar:2.3.0:compile
-8985, org.scalatra:scalatra-auth_2.11:jar:2.3.0:compile
-8985, org.scalatra:scalatra-common_2.11:jar:2.3.0:compile
-8985, org.scalatra:scalatra-json_2.11:jar:2.3.0:compile
-8985, org.scalatra:scalatra-swagger_2.11:jar:2.3.0:compile
-12843, org.slf4j:jcl-over-slf4j:jar:1.7.16:provided
-12842, org.slf4j:jul-to-slf4j:jar:1.7.16:provided
-4377, org.slf4j:slf4j-api:jar:1.6.1:provided
-6855, org.slf4j:slf4j-api:jar:1.7.21:compile
-6855, org.slf4j:slf4j-api:jar:1.7.21:provided
-unknown, org.slf4j:slf4j-log4j12:jar:1.6.1:provided
-7665, org.slf4j:slf4j-log4j12:jar:1.7.21:compile
-7665, org.slf4j:slf4j-log4j12:jar:1.7.21:provided
-unknown, org.spark-project.spark:unused:jar:1.0.0:provided
-12338, org.springframework.security:spring-security-core:jar:4.0.4.RELEASE:provided
-12338, org.springframework.security:spring-security-web:jar:4.0.4.RELEASE:provided
-unknown, org.springframework:spring-aop:jar:4.2.5.RELEASE:provided
-11894, org.springframework:spring-aop:jar:4.3.7.RELEASE:provided
-unknown, org.springframework:spring-beans:jar:4.2.5.RELEASE:provided
-11895, org.springframework:spring-beans:jar:4.3.7.RELEASE:provided
-unknown, org.springframework:spring-context:jar:4.2.5.RELEASE:provided
-11896, org.springframework:spring-context:jar:4.3.7.RELEASE:provided
-unknown, org.springframework:spring-core:jar:4.2.5.RELEASE:provided
-11893, org.springframework:spring-core:jar:4.3.7.RELEASE:provided
-unknown, org.springframework:spring-expression:jar:4.2.5.RELEASE:provided
-15781, org.springframework:spring-web:jar:4.3.7.RELEASE:provided
-unknown, org.tukaani:xz:jar:1.0:compile
-unknown, org.tukaani:xz:jar:1.0:provided
-unknown, org.xerial.snappy:snappy-java:jar:1.1.2.6:provided
-unknown, oro:oro:jar:2.0.8:provided
-8720, picocontainer:picocontainer:jar:1.2:compile
-14037, redis.clients:jedis:jar:2.9.0:compile
-unknown, tomcat:jasper-compiler:jar:5.5.23:provided
-unknown, tomcat:jasper-runtime:jar:5.5.23:provided
-8437, xerces:xercesImpl:jar:2.10.0:provided
-unknown, xmlenc:xmlenc:jar:0.52:provided
-
-eclipse.platform, org.eclipse.help.*
-eclipse.platform, org.eclipse.rcp_root_*
-
-# Workswith for Hono (should be ignored)
-13633, io.fabric8:docker-maven-plugin:0.21.0
-13633, org.springframework.boot:spring-boot-maven-plugin:1.4.5.RELEASE
-13633, org.codehaus.mojo:buildnumber-maven-plugin:1.4
-13633, org.sonatype.plugins:nexus-staging-maven-plugin:1.6.7
-13633, org.apache.jmeter:ApacheJMeter_core:3.2
-13633, org.apache.jmeter:jorphan:3.2
-15058, io.fabric8:docker-maven-plugin:0.23.0
-15058, io.fabric8:fabric8-maven-plugin:3.5.33
-15058, org.apache.maven.plugins:maven-compiler-plugin:3.3
-15058, org.apache.maven.plugins:maven-resources-plugin:3.0.2
-15058, org.apache.maven.plugins:maven-jar-plugin:3.0.2
-15058, org.apache.maven.plugins:maven-javadoc-plugin:2.10.4
-15058, org.apache.maven.plugins:maven-surefire-plugin:2.19.1
-15058, org.apache.maven.plugins:maven-failsafe-plugin:2.19.1
-15058, org.apache.maven.plugins:maven-dependency-plugin:3.0.1
-15058, org.springframework.boot:spring-boot-maven-plugin:1.5.8.RELEASE
-15058, org.apache.maven.plugins:maven-enforcer-plugin:1.4.1
-15058, org.apache.maven.plugins:maven-source-plugin:3.0.1
-15058, org.sonatype.plugins:nexus-staging-maven-plugin:1.6.8
-15058, org.apache.maven.plugins:maven-gpg-plugin:1.6
-15186, org.apache.qpid:qpid-jms-client:0.27.0
-15635, org.apache.qpid:qpid-jms-client:0.29.0
-15635, org.mockito:mockito-core:2.10.0
-15635, org.apache.jmeter:ApacheJMeter_core:3.3
-15635, io.fabric8:fabric8-maven-plugin:3.5.34
-15635, io.fabric8:docker-maven-plugin:0.24.0
-15635, org.apache.maven.plugins:maven-javadoc-plugin:3.0.0
-15635, org.apache.maven.plugins:maven-surefire-plugin:2.20.1
-15635, org.apache.maven.plugins:maven-failsafe-plugin:2.20.1
-15635, org.apache.maven.plugins:maven-dependency-plugin:3.0.2
-15635, org.apache.maven.plugins:maven-compiler-plugin:3.7.0
-
-15636, org.apache.qpid:proton-j:jar:0.25.0:compile
-15426, org.springframework:spring-context-support:jar:4.3.12.RELEASE:compile
-
-4523, antlr-runtime-3.2.jar
-16102, org.objectweb.asm.source_6.1.0.*.jar
-16105, org.objectweb.asm.source_6.1.1.v20180414-0329.jar
-16102, org.objectweb.asm.tree.source_6.1.0.*.jar
-16105, org.objectweb.asm.tree.source_6.1.1.v20180414-0329.jar
-
-rt.ecf, (= Bundle-Vendor "Eclipse.org - ECF")
-rt.ecf, (& (= Built-By "genie.ecf") (regex "^ch.ethz.iks.r_osgi(?:.remote)?" Bundle-SymbolicName))
-rt.ecf, (& (= Built-By "genie.ecf") (regex "^ch.ethz.iks.slp(?:.remote)?" Bundle-SymbolicName))
-
-14016, org.apache.batik.css.source_1.9.0.v20170908-1305.jar
-9681, org.apache.batik.dom_1.7.1.v201505191845.jar
-9681, org.apache.batik.dom.source_1.7.1.v201505191845.jar
-14972, org.apache.batik.i18n.source_1.9.0.v20170906-1841.jar
-14018, org.apache.batik.util.source_1.9.0.v20170906-1841.jar
-14022, org.apache.felix.gogo.command.source_1.0.2.v20170914-1324.jar
-14023, org.apache.felix.gogo.runtime.source_1.0.6.v20170914-1324.jar
-14024, org.apache.felix.gogo.shell.source_1.0.0.v20170914-1324.jar
-15363, org.apache.felix.scr.source_2.0.14.v20180117-1452.jar
-15028, org.apache.lucene.analyzers-common.source_7.1.0.v20180122-2126.jar
-15027, org.apache.lucene.analyzers-smartcn.source_7.1.0.v20180122-2126.jar
-15026, org.apache.lucene.core.source_7.1.0.v20171214-1510.jar
-7008, org.apache.poi.ooxml_3.9.0.v201405241905.jar
-7009, org.apache.poi.ooxml.schemas_3.9.0.v201405241750.jar
-14688, org.gradle.toolingapi_4.3.0.v20171108133209.jar
-15316, org.jacoco.agent_0.8.0.v20180126-2052.jar
-15314, org.jacoco.core_0.8.0.v20180126-2052.jar
-15315, org.jacoco.report_0.8.0.v20180126-2052.jar
-12549, org.junit.jupiter.api.source_5.0.0.v20170910-2246.jar
-12549, org.junit.jupiter.engine.source_5.0.0.v20170910-2246.jar
-12549, org.junit.jupiter.migrationsupport.source_5.0.0.v20170910-2246.jar
-12549, org.junit.jupiter.params.source_5.0.0.v20170910-2246.jar
-12549, org.junit.platform.commons.source_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.engine.source_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.launcher.source_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.runner.source_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.suite.api.source_1.0.0.v20170910-2246.jar
-12549, org.junit.vintage.engine.source_4.12.0.v20170910-2246.jar
-org.mozilla.javascript_1.7.5.v201504281450.jar
-org.mozilla.javascript.source_1.7.5.v201504281450.jar
-11702, org.objectweb.asm_6.0.0.v20170929-1901.jar
-11702, org.objectweb.asm.source_6.0.0.v20170929-1901.jar
-14348, org.objectweb.asm.tree_6.0.0.v20170929-1901.jar
-14348, org.objectweb.asm.tree.source_6.0.0.v20170929-1901.jar
-13321, org.opentest4j_1.0.0.v20170910-2246.jar
-13321, org.opentest4j.source_1.0.0.v20170910-2246.jar
-org.tukaani.xz.source_1.8.0.v20180207-1613.jar
-org.w3c.dom.svg.extension_1.1.0.v201706222054.jar
-org.w3c.dom.svg.extension.source_1.1.0.v201706222054.jar
-
-12549, org.apiguardian.source_1.0.0.v20170910-2246.jar
-
-9513, com.ibm.icu.base_52.1.1.v201501240615.jar
-9144, com.ibm.icu.base_54.1.1.v201501272100.jar
-10420, com.ibm.icu.base_56.1.0.v201601250100.jar
-9513, com.ibm.icu.base.source_52.1.1.v201501240615.jar
-9144, com.ibm.icu.base.source_54.1.1.v201501272100.jar
-ecd.dirigible, dirigible-*.jar
-
-15838, systems.uom.systems-quantity_0.7.2.jar
-15838, systems.uom:systems-quantity:bundle:0.7.2
-
-9061, ch.qos.logback.classic_1.1.2.v20160208-0839.jar
-9061, ch.qos.logback.classic.source_1.1.2.v20160208-0839.jar
-9060,ch.qos.logback.core_1.1.2.v20160208-0839.jar
-9060, ch.qos.logback.core.source_1.1.2.v20160208-0839.jar
-9061, ch.qos.logback.slf4j_1.1.2.v20160301-0943.jar
-9061, ch.qos.logback.slf4j.source_1.1.2.v20160301-0943.jar
-
-16205, co.fs2:fs2-io_2.11:0.10.4
-16206, co.fs2:fs2-core_2.11:0.10.4
-16207, org.typelevel:cats-effect_2.11:0.10.1
-16209, org.typelevel:cats-core_2.11:1.1.0
-16210, org.typelevel:cats-kernel_2.11:1.1.0
-16211, org.typelevel:cats-macros_2.11:1.1.0
-16212, jp.ne.opt:chronoscala_2.11:0.1.6
-16213, org.scalaj:scalaj-http_2.11:2.4.0
-16214, com.github.julien-truffaut:monocle-macro_2.11:1.5.1-cats
-16214, com.github.julien-truffaut:monocle-core_2.11:1.5.1-cats
-16215, com.github.julien-truffaut:newts-core_2.11:0.3.1
-16216, org.typelevel:machinist_2.11:0.6.2
-16199, com.github.pureconfig:pureconfig_2.11:0.9.1
-16199, com.github.pureconfig:pureconfig-macros_2.11:0.9.1
-16217, com.github.blemale:scaffeine_2.11:2.5.0
-16218, com.github.ben-manes.caffeine:caffeine:2.6.2
-16219, org.scala-lang.modules:scala-parser-combinators_2.11:1.1.0
-16220, com.typesafe.scala-logging:scala-logging_2.11:3.9.0
-16221, org.slf4j:slf4j-api:1.7.25
-16222, com.datastax.cassandra:cassandra-driver-core:3.5.0
-16223, com.github.jnr:jnr-posix:3.0.44
-16224, com.github.jnr:jnr-constants:0.9.9
-16225, com.github.jnr:jnr-ffi:2.1.7
-16226, com.github.jnr:jnr-x86asm:1.0.2
-16227, org.ow2.asm:asm-util:5.0.3
-16227, org.ow2.asm:asm-analysis:5.0.3
-16227, org.ow2.asm:asm-commons:5.0.3
-16227, org.ow2.asm:asm-tree:5.0.3
-16227, org.ow2.asm:asm:5.0.3
-16228, com.github.jnr:jffi:1.2.16
-16229, com.google.guava:guava:19.0
-
-pax-confman-propsloader-0.2.2.jar
-
-15599, org.apache.batik.css.source_1.9.1.v20180313-1559.jar
-15600, org.apache.batik.dom.source_1.9.1.v20180313-1559.jar
-15595, org.apache.batik.ext.awt.source_1.9.1.v20180227-1645.jar
-15594, org.apache.batik.svggen.source_1.9.1.v20180313-1559.jar
-15597, org.apache.batik.util.gui.source_1.9.1.v20180227-1645.jar
-15596, org.apache.batik.util.source_1.9.1.v20180227-1645.jar
-15598, org.apache.batik.xml.source_1.9.1.v20180227-1645.jar
-
-unknown, com.jayway.awaitility:awaitility:jar:1.7.0:compile
-unknown, net._01001111:jlorem:jar:1.1:compile
-unknown, net.minidev:asm:jar:1.0.2:compile
-unknown, org.assertj:assertj-core:jar:3.6.2:compile
-unknown, org.json:json:jar:20141113:compile
-unknown, org.mariadb.jdbc:mariadb-java-client:jar:2.0.2:compile
-unknown, org.objenesis:objenesis:jar:2.1:compile
-
-4720, asm:asm:jar:3.3.1:compile
-10614, cglib:cglib-nodep:jar:3.1:compile
-9851, com.jayway.jsonpath:json-path:jar:2.0.0:compile
-15302, javax.validation:validation-api:jar:2.0.1.Final:compile
-15302, javax.validation:validation-api:jar:sources:1.0.0.GA:compile
-11928, net.minidev:json-smart:jar:2.1.1:compile
-10579, org.mockito:mockito-core:jar:1.10.19:compile
-12223, org.skyscreamer:jsonassert:jar:1.3.0:compile
-unknown, org.springframework.boot:spring-boot-starter-test:jar:1.4.5.RELEASE:compile
-unknown, org.springframework.boot:spring-boot-test-autoconfigure:jar:1.4.7.RELEASE:compile
-unknown, org.springframework.boot:spring-boot-test:jar:1.4.7.RELEASE:compile
-unknown, org.springframework.integration:spring-integration-test:jar:4.3.10.RELEASE:compile
-unknown, org.springframework:spring-test:jar:4.3.9.RELEASE:compile
-
-15762, com.cronutils:cron-utils:jar:5.0.5:compile
-13029, com.github.gwtd3:gwt-d3-api:jar:1.2.0:compile
-13030, com.github.gwtd3:gwt-d3-js:jar:3.5.11:compile
-13030, com.github.gwtd3:gwt-d3-js:jar:sources:3.5.11:compile
-16201, com.google.guava:guava:jar:25.0-jre:compile
-15896, com.microsoft.sqlserver:mssql-jdbc:jar:6.4.0.jre8:compile
-13041, com.rabbitmq:amqp-client:jar:4.0.2:compile
-15867, com.rabbitmq:http-client:jar:1.3.1.RELEASE:compile
-10714, com.vaadin.external.atmosphere:atmosphere-runtime:jar:2.2.7:compile
-11039, com.vaadin.external.flute:flute:jar:1.3.0.gg2:compile
-13031, com.vaadin.external.gwt:gwt-elemental:jar:2.7.0.vaadin6:compile
-13033, com.vaadin.external.gwt:gwt-user:jar:2.7.0.vaadin6:compile
-10715, com.vaadin.external.slf4j:vaadin-slf4j-jdk14:jar:1.6.1:compile
-12956, com.vaadin:vaadin-client:jar:7.7.7:compile
-12957, com.vaadin:vaadin-push:jar:7.7.7:compile
-11041, com.vaadin:vaadin-sass-compiler:jar:0.9.12:compile
-12959, com.vaadin:vaadin-server:jar:7.7.7:compile
-12960, com.vaadin:vaadin-shared:jar:7.7.7:compile
-12962, com.vaadin:vaadin-spring-boot:jar:1.1.1:compile
-12963, com.vaadin:vaadin-spring:jar:1.1.1:compile
-12961, com.vaadin:vaadin-themes:jar:7.7.7:compile
-12964, cz.jirutka.rsql:rsql-parser:jar:2.1.0:compile
-12965, io.protostuff:protostuff-api:jar:1.5.3:compile
-12966, io.protostuff:protostuff-collectionschema:jar:1.5.3:compile
-12967, io.protostuff:protostuff-core:jar:1.5.6:compile
-12968, io.protostuff:protostuff-runtime:jar:1.5.6:compile
-10363, javax.transaction:javax.transaction-api:jar:1.2:compile
-11060, org.apache.tomcat.embed:tomcat-embed-el:jar:8.0.28:compile
-10617, org.apache.tomcat:tomcat-jdbc:jar:8.0.28:compile
-10618, org.apache.tomcat:tomcat-juli:jar:8.0.28:compile
-tools.aspectj, org.aspectj:aspectjweaver:jar:*:compile
-12947, org.flywaydb:flyway-core:jar:4.0.3:compile
-15540, org.hibernate.validator:hibernate-validator:jar:6.0.7.Final:compile
-10621, org.jboss.logging:jboss-logging:jar:3.2.1.Final:compile
-10622, org.jsoup:jsoup:jar:1.8.1:compile
-12936, org.jsoup:jsoup:jar:1.8.3:compile
-12944, org.mortbay.jasper:apache-el:jar:8.0.33:compile
-12945, org.ow2.asm:asm-commons:jar:5.0.1:compile
-12945, org.ow2.asm:asm-tree:jar:5.0.1:compile
-13043, org.springframework.amqp:spring-amqp:jar:1.7.1.RELEASE:compile
-13044, org.springframework.amqp:spring-rabbit:jar:1.7.1.RELEASE:compile
-13044, org.springframework.amqp:spring-rabbit-junit:jar:1.7.1.RELEASE:compile
-13044, org.springframework.amqp:spring-rabbit-test:jar:1.7.1.RELEASE:compile
-12992, org.springframework.boot:spring-boot-actuator:jar:1.4.5.RELEASE:compile
-12971, org.springframework.boot:spring-boot-autoconfigure:jar:1.4.5.RELEASE:compile
-12985, org.springframework.boot:spring-boot:jar:1.4.5.RELEASE:compile
-12973, org.springframework.boot:spring-boot-starter-actuator:jar:1.4.5.RELEASE:compile
-12974, org.springframework.boot:spring-boot-starter-aop:jar:1.4.5.RELEASE:compile
-12975, org.springframework.boot:spring-boot-starter-data-jpa:jar:1.4.5.RELEASE:compile
-12984, org.springframework.boot:spring-boot-starter:jar:1.4.5.RELEASE:compile
-12976, org.springframework.boot:spring-boot-starter-jdbc:jar:1.4.5.RELEASE:compile
-12977, org.springframework.boot:spring-boot-starter-jetty:jar:1.4.5.RELEASE:compile
-12981, org.springframework.boot:spring-boot-starter-logging:jar:1.4.5.RELEASE:compile
-12982, org.springframework.boot:spring-boot-starter-validation:jar:1.4.5.RELEASE:compile
-12983, org.springframework.boot:spring-boot-starter-web:jar:1.4.5.RELEASE:compile
-12986, org.springframework.cloud:spring-cloud-bus:jar:1.2.2.RELEASE:compile
-12987, org.springframework.cloud:spring-cloud-context:jar:1.1.8.RELEASE:compile
-12989, org.springframework.cloud:spring-cloud-stream-binder-test:jar:1.1.2.RELEASE:compile
-12989, org.springframework.cloud:spring-cloud-stream:jar:1.1.2.RELEASE:compile
-12989, org.springframework.cloud:spring-cloud-stream-test-support:jar:1.1.2.RELEASE:compile
-12990, org.springframework.data:spring-data-commons:jar:1.12.8.RELEASE:compile
-12972, org.springframework.data:spring-data-jpa:jar:1.10.8.RELEASE:compile
-12993, org.springframework.hateoas:spring-hateoas:jar:0.23.0.RELEASE:compile
-12994, org.springframework.integration:spring-integration-core:jar:4.3.8.RELEASE:compile
-12995, org.springframework.integration:spring-integration-jmx:jar:4.3.8.RELEASE:compile
-12996, org.springframework.integration:spring-integration-tuple:jar:1.0.0.RELEASE:compile
-12997, org.springframework.plugin:spring-plugin-core:jar:1.2.0.RELEASE:compile
-10781, org.springframework.retry:spring-retry:jar:1.1.2.RELEASE:compile
-12999, org.springframework.security:spring-security-aspects:jar:4.1.4.RELEASE:compile
-13000, org.springframework.security:spring-security-config:jar:4.1.4.RELEASE:compile
-13002, org.springframework.security:spring-security-crypto:jar:4.1.4.RELEASE:compile
-13005, org.springframework.security:spring-security-web:jar:4.1.4.RELEASE:compile
-13006, org.springframework:spring-aspects:jar:4.3.7.RELEASE:compile
-13020, org.springframework:spring-messaging:jar:4.3.7.RELEASE:compile
-12998, org.springframework:spring-tuple:jar:1.0.0.RELEASE:compile
-13024, org.springframework:spring-webmvc:jar:4.3.7.RELEASE:compile
-11050, org.vaadin.addons:flexibleoptiongroup:jar:2.2.0:compile
-13025, org.vaadin.addons.lazyquerycontainer:vaadin-lazyquerycontainer:jar:7.6.1.3:compile
-11051, org.vaadin.addons:tokenfield:jar:7.0.1:compile
-13026, org.vaadin.alump.distributionbar:dbar-addon:jar:2.0.0:compile
-11047, org.vaadin.spring.addons:vaadin-spring-addon-eventbus:jar:0.0.6.RELEASE:compile
-11048, org.vaadin.spring.extensions:vaadin-spring-ext-core:jar:0.0.6.RELEASE:compile
-11049, org.vaadin.spring.extensions:vaadin-spring-ext-security:jar:0.0.6.RELEASE:compile
-11059, org.w3c.css:sac:jar:1.3:compile
-
-15975, org.jacoco.agent_0.8.1.v20180328-1646.jar
-15970, org.jacoco.core_0.8.1.v20180328-1646.jar
-15972, org.jacoco.report_0.8.1.v20180328-1646.jar
-
-15975, org.jacoco:org.jacoco.agent:jar:0.8.1
-15970, org.jacoco:org.jacoco.core:jar:0.8.1
-15972, org.jacoco:org.jacoco.report:jar:0.8.1
-
-15316, org.jacoco:org.jacoco.agent:jar:0.8.0
-15314, org.jacoco:org.jacoco.core:jar:0.8.0
-15315, org.jacoco:org.jacoco.report:jar:0.8.0
-
-com.mongodb_2.4.0.v20110608-1747
-com.mongodb.source_2.4.0.v20110608-1747
-
-9105, com.fasterxml.jackson.module.jackson-module-jaxb-annotations_2.5.0.v201504151636.jar
-12419, com.spotify.docker.client-6.1.1-SNAPSHOT-sources.jar
-15443, com.spotify.docker.client.source_8.9.2.v20180207-1730.jar
-
-15584, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
-12224, commons-io:commons-io:jar:2.5:compile
-5178, de.pdark:decentxml:jar:1.3:compile
-7064, junit:junit:jar:4.11:compile
-15165, org.apache.commons:commons-compress:jar:1.15:compile
-15165, org.apache.commons:commons-compress:jar:sources:1.15:compile
-7907, org.apache.commons:commons-exec:jar:1.2:compile
-71, org.apache.commons:commons-lang3:jar:3.1:compile
-6822, org.apache.maven:maven-archiver:jar:2.5:compile
-4585, org.apache.maven:maven-artifact:jar:3.0:compile
-15586, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
-4586, org.apache.maven:maven-compat:jar:3.0:compile
-4587, org.apache.maven:maven-core:jar:3.0:compile
-5647, org.apache.maven:maven-model-builder:jar:3.0:compile
-5648, org.apache.maven:maven-model:jar:3.0:compile
-4591, org.apache.maven:maven-plugin-api:jar:3.0:compile
-15587, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
-15588, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
-15589, org.apache.maven:maven-profile:jar:2.2.1:compile
-15590, org.apache.maven:maven-project:jar:2.2.1:compile
-5651, org.apache.maven:maven-repository-metadata:jar:3.0:compile
-4913, org.apache.maven:maven-settings-builder:jar:3.0:compile
-4906, org.apache.maven:maven-settings:jar:3.0:compile
-15591, org.apache.maven:maven-toolchain:jar:2.2.1:compile
-5179, org.apache.maven.plugins:maven-source-plugin:maven-plugin:2.1:compile
-12890, org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.3:provided
-12887, org.apache.maven.surefire:maven-surefire-common:jar:2.19.1:compile
-12888, org.apache.maven.surefire:surefire-api:jar:2.19.1:compile
-15585, org.apache.maven.surefire:surefire-booter:jar:2.19.1:compile
-4925, org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6:compile
-13048, org.codehaus.plexus:plexus-archiver:jar:3.4:compile
-7945, org.codehaus.plexus:plexus-classworlds:jar:2.5.1:compile
-7945, org.codehaus.plexus:plexus-classworlds:jar:2.5.1:provided
-7559, org.codehaus.plexus:plexus-compiler-api:jar:2.2:compile
-7560, org.codehaus.plexus:plexus-compiler-manager:jar:2.2:compile
-4583, org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
-15477, org.codehaus.plexus:plexus-io:jar:2.7.1:compile
-7947, org.codehaus.plexus:plexus-utils:jar:3.0.24:compile
-7947, org.codehaus.plexus:plexus-utils:jar:3.0.24:provided
-eclipse.jdt, org.eclipse.jdt:*:*:*
-eclipse.platform, org.eclipse.platform:*:*:*
-technology.tycho, org.eclipse.tycho:*:*:*
-7063, org.hamcrest:hamcrest-core:jar:1.3:compile
-13052, org.iq80.snappy:snappy:jar:0.4:compile
-3931, org.objenesis:objenesis:jar:1.0:compile
-15478, org.objenesis:objenesis:jar:2.6:compile
-9714, org.ow2.asm:asm-debug-all:jar:5.0.3:compile
-4573, org.sonatype.aether:aether-api:jar:1.7:compile
-4574, org.sonatype.aether:aether-impl:jar:1.7:compile
-4575, org.sonatype.aether:aether-spi:jar:1.7:compile
-4576, org.sonatype.aether:aether-util:jar:1.7:compile
-5646, org.sonatype.plexus:plexus-cipher:jar:1.7:compile
-4601, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
-
-15995, javax.transaction.api_1.3.0.jar
-10518, org.mongodb.mongo-java-driver_3.2.0.jar
-10518, org.mongodb.mongo-java-driver.source_3.2.0.jar
-
-12534, org.jcodings_1.0.18.v20170306-1742.jar
-12535, org.joni_2.1.11.v20170306-1742.jar
-
-3578, javax.inject:javax.inject:jar:1:compile
-
-1378, (& (= file "jaxrpc.jar")(= Specification-Title "JAX-RPC")(= Specification-Version "1.1"))
-
-javax.xml.rpc_1.1.0.v201209140446
-javax.xml.soap_1.2.0.v201005080501
-javax.xml.soap_1.3.0.v201105210645
-jaxrpc.jar
-js.jar
-jsp.jar
-odaconnectivity.jar
-odadesignapi.jar
-org.apache.axis_1.4.0.v201411182030
-org.apache.batik.constants_1.9.1.v20180227-1645.jar
-org.apache.batik.css_1.9.1.v20180313-1559.jar
-org.apache.batik.i18n_1.9.1.v20180227-1645.jar
-org.apache.batik.util_1.9.1.v20180227-1645.jar
-org.apache.commons.discovery_0.2.0.v201004190315
-org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
-org.apache.felix.gogo.runtime_1.0.6.v20170914-1324.jar
-org.apache.felix.gogo.shell_1.0.0.v20170914-1324.jar
-15192, org.apache.lucene.analyzers-common_7.1.0.v20180122-2126.jar
-15193, org.apache.lucene.analyzers-smartcn_7.1.0.v20180122-2126.jar
-org.apache.lucene.core_7.1.0.v20171214-1510.jar
-org.apache.ws.commons.util_1.0.2.v20160817-1930.jar
-15510, org.apache.xmlgraphics_2.2.0.v20180410-1551.jar
-13321, org.apiguardian_1.0.0.v20180327-1502.jar
-15514, org.junit.jupiter.api_5.1.0.v20180327-1502.jar
-15514, org.junit.jupiter.engine_5.1.0.v20180327-1502.jar
-15514, org.junit.jupiter.migrationsupport_5.1.0.v20180327-1502.jar
-15514, org.junit.jupiter.params_5.1.0.v20180327-1502.jar
-15514, org.junit.platform.commons_1.1.0.v20180327-1502.jar
-15514, org.junit.platform.engine_1.1.0.v20180327-1502.jar
-15514, org.junit.platform.launcher_1.1.0.v20180327-1502.jar
-15514, org.junit.platform.runner_1.1.0.v20180327-1502.jar
-15514, org.junit.platform.suite.api_1.1.0.v20180327-1502.jar
-15514, org.junit.vintage.engine_5.1.0.v20180327-1502.jar
-org.mozilla.javascript_1.7.5.v201504281450.jar
-org.mozilla.javascript.source_1.7.5.v201504281450.jar
-16104, org.objectweb.asm_6.1.1.v20180414-0329.jar
-16104, org.objectweb.asm.tree_6.1.1.v20180414-0329.jar
-15386, org.tukaani.xz_1.8.0.v20180207-1613.jar
-org.w3c.dom.svg.extension_1.1.0.v201806141605.jar
-org.w3c.dom.svg.extension.source_1.1.0.v201806141605.jar
-265, org.w3c.sac_1.3.0.v201806141605
-saaj.jar
-birt, uk.co.spudsoft.birt.emitters.excel_*
-viewservlets.jar
-
-10518, org.mongodb.mongo-java-driver_3.2.0.jar
-10518, org.mongodb.mongo-java-driver.source_3.2.0.jar
-
-ee4j.eclipselink, (= Implementation-Vendor "Eclipse.org - EclipseLink Project")
-ee4j.eclipselink, (& (= Bundle-SymbolicName "javax.persistence")(= Bundle-Version "1.99.0"))
-
-130, backport-util-concurrent:backport-util-concurrent:jar:2.2:compile
-2882, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
-15958, com.auth0:java-jwt:jar:3.2.0:compile
-9102, com.fasterxml.jackson.core:jackson-annotations:jar:2.5.4:compile
-11930, com.fasterxml.jackson.core:jackson-core:jar:2.8.4:compile
-11931, com.fasterxml.jackson.core:jackson-databind:jar:2.8.4:compile
-14005, com.google.code.gson:gson:jar:2.8.0:compile
-15934, com.google.collections:google-collections:jar:1.0:compile
-1387, commons-beanutils:commons-beanutils:jar:1.7.0:compile
-15971, commons-codec:commons-codec:jar:1.11:compile
-1421, commons-collections:commons-collections:jar:3.2:compile
-1765, commons-httpclient:commons-httpclient:jar:3.1:compile
-12224, commons-io:commons-io:jar:2.5:compile
-2678, commons-lang:commons-lang:jar:2.4:compile
-10162, commons-logging:commons-logging:jar:1.2:compile
-134, javax.activation:activation:jar:1.1.1:compile
-15978, javax.servlet:javax.servlet-api:jar:3.0.1:compile
-3435, javax.validation:validation-api:jar:1.1.0.Final:compile
-7837, log4j:log4j:jar:1.2.17:compile
-11713, org.apache.httpcomponents:httpclient:jar:4.5.3:compile
-11716, org.apache.httpcomponents:httpcore:jar:4.4.6:compile
-4925, org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6:compile
-7947, org.codehaus.plexus:plexus-utils:jar:3.0.22:compile
-9284, org.codehaus.plexus:plexus-velocity:jar:1.1.7:compile
-ee4j.eclipselink, org.eclipse.persistence:commonj.sdo:*
-ee4j.eclipselink, org.eclipse.persistence:eclipselink:*
-ee4j.eclipselink, org.eclipse.persistence:javax.persistence:*
-8679, org.glassfish:javax.json:jar:1.0.4:compile
-11820, org.jacoco:org.jacoco.core:jar:0.7.9:compile
-11821, org.jacoco:org.jacoco.report:jar:0.7.9:compile
-13843, org.jboss.logging:jboss-logging:jar:3.3.0.Final:compile
-11298, org.objenesis:objenesis:jar:2.2:compile
-15951, postgresql:postgresql:jar:9.1-901-1.jdbc4:compile
-103, xerces:xercesImpl:jar:2.8.1:compile
-
-unknown, commons-digester:commons-digester:jar:1.6:compile
-unknown, commons-validator:commons-validator:jar:1.2.0:compile
-unknown, net.jcip:jcip-annotations:jar:1.0:compile
-unknown, classworlds:classworlds:jar:1.1-alpha-2:compile
-unknown, org.apache.maven.doxia:doxia-core:jar:1.1.2:compile
-unknown, org.apache.maven.doxia:doxia-decoration-model:jar:1.1.2:compile
-unknown, org.apache.maven.doxia:doxia-logging-api:jar:1.1:compile
-unknown, org.apache.maven.doxia:doxia-module-fml:jar:1.1.2:compile
-unknown, org.apache.maven.doxia:doxia-module-xhtml:jar:1.1.2:compile
-unknown, org.apache.maven.doxia:doxia-sink-api:jar:1.1:compile
-unknown, org.apache.maven.doxia:doxia-site-renderer:jar:1.1.2:compile
-unknown, org.apache.maven:maven-artifact:jar:2.2.1:compile
-unknown, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
-unknown, org.apache.maven:maven-model:jar:2.2.1:compile
-unknown, org.apache.maven:maven-plugin-api:jar:2.2.1:compile
-unknown, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
-unknown, org.apache.maven:maven-profile:jar:2.2.1:compile
-unknown, org.apache.maven:maven-project:jar:2.2.1:compile
-unknown, org.apache.maven:maven-repository-metadata:jar:2.2.1:compile
-unknown, org.apache.maven:maven-settings:jar:2.2.1:compile
-unknown, org.apache.maven.reporting:maven-reporting-api:jar:2.2.1:compile
-unknown, org.apache.maven.reporting:maven-reporting-impl:jar:2.1:compile
-unknown, org.apache.maven.shared:file-management:jar:1.2.1:compile
-unknown, org.apache.maven.shared:maven-shared-io:jar:1.1:compile
-unknown, org.apache.velocity:velocity:jar:1.5:compile
-unknown, org.bouncycastle:bcprov-jdk15on:jar:1.55:compile
-unknown, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
-unknown, org.codehaus.plexus:plexus-i18n:jar:1.0-beta-7:compile
-unknown, org.codehaus.plexus:plexus-interpolation:jar:1.11:compile
-unknown, org.easymock:easymock:jar:3.4:compile
-unknown, org.jacoco:jacoco-maven-plugin:jar:0.7.9:compile
-unknown, org.jacoco:org.jacoco.agent:jar:runtime:0.7.9:compile
-unknown, org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.0_spec:jar:1.0.1.Beta1:compile
-unknown, org.jboss.spec.javax.annotation:jboss-annotations-api_1.2_spec:jar:1.0.0.Final:compile
-unknown, org.ow2.asm:asm-debug-all:jar:5.2:compile
-unknown, oro:oro:jar:2.0.8:compile
-unknown, xml-apis:xml-apis:jar:1.0.b2:compile
-#withdrawn 15959, org.jboss.resteasy:jaxrs-api:jar:3.0.12.Final:compile
-#withdrawn 15961, org.jboss.resteasy:resteasy-jaxrs:jar:3.0.21.Final:compile
-#withdrawn 15960, org.json:json:jar:20160810:compile
-
-16794, com.fasterxml.jackson.core:jackson-annotations:jar:2.9.2:compile
-16713, com.fasterxml.jackson.core:jackson-core:jar:2.9.2:compile
-16793, com.fasterxml.jackson.core:jackson-databind:jar:2.9.2:compile
-16357, com.github.jsonld-java:jsonld-java:jar:0.12.0:compile
-10531, com.opencsv:opencsv:jar:3.2:compile
-10533, org.apache.commons:commons-lang3:jar:3.3.2:compile
-11714, org.apache.httpcomponents:httpclient-cache:jar:4.5.2:compile
-11715, org.apache.httpcomponents:httpclient:jar:4.5.2:compile
-11716, org.apache.httpcomponents:httpcore:jar:4.4.4:compile
-
-13194, com.carrotsearch:hppc:jar:0.7.1:compile
-13985, com.fasterxml.jackson.core:jackson-annotations:jar:2.9.6:compile
-13983, com.fasterxml.jackson.core:jackson-core:jar:2.9.6:compile
-13984, com.fasterxml.jackson.core:jackson-databind:jar:2.9.6:compile
-13520, com.github.spullara.mustache.java:compiler:jar:0.9.3:compile
-9085, com.google.guava:guava:jar:18.0:compile
-4578, commons-cli:commons-cli:jar:1.2:compile
-1421, commons-collections:commons-collections:jar:3.2.2:compile
-10596, commons-configuration:commons-configuration:jar:1.6:compile
-5809, commons-fileupload:commons-fileupload:jar:1.3.1:compile
-12224, commons-io:commons-io:jar:2.5:compile
-6183, commons-lang:commons-lang:jar:2.6:compile
-10531, com.opencsv:opencsv:jar:3.2:compile
-13195, com.tdunning:t-digest:jar:3.0:compile
-8072, com.vividsolutions:jts:jar:1.13:compile
-1362, dom4j:dom4j:jar:1.6.1:compile
-13159, io.dropwizard.metrics:metrics-core:jar:3.2.2:compile
-13162, io.dropwizard.metrics:metrics-graphite:jar:3.2.2:compile
-13160, io.dropwizard.metrics:metrics-jvm:jar:3.2.2:compile
-12614, io.netty:netty-buffer:jar:4.1.13.Final:compile
-12614, io.netty:netty-codec-http:jar:4.1.13.Final:compile
-12614, io.netty:netty-codec:jar:4.1.13.Final:compile
-12614, io.netty:netty-common:jar:4.1.13.Final:compile
-12614, io.netty:netty-handler:jar:4.1.13.Final:compile
-13510, io.netty:netty:jar:3.10.6.Final:compile
-12614, io.netty:netty-resolver:jar:4.1.13.Final:compile
-12614, io.netty:netty-transport:jar:4.1.13.Final:compile
-15978, javax.servlet:javax.servlet-api:jar:3.0.1:provided
-11988, joda-time:joda-time:jar:2.9.5:compile
-9081, org.apache.commons:commons-lang3:jar:3.3.2:compile
-11718, org.apache.httpcomponents:httpmime:jar:4.5.2:compile
-
-unknown, com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.9.6:compile
-unknown, com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.9.6:compile
-unknown, com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.9.6:compile
-unknown, com.github.ben-manes.caffeine:caffeine:jar:2.4.0:compile
-unknown, com.google.protobuf:protobuf-java:jar:3.1.0:compile
-unknown, com.tdunning:t-digest:jar:3.1:compile
-unknown, info.ganglia.gmetric4j:gmetric4j:jar:1.0.7:compile
-unknown, io.dropwizard.metrics:metrics-ganglia:jar:3.2.2:compile
-unknown, io.dropwizard.metrics:metrics-jetty9:jar:3.2.2:compile
-unknown, jdk.tools:jdk.tools:jar:1.8:system
-unknown, joda-time:joda-time:jar:2.2:compile
-unknown, net.hydromatic:eigenbase-properties:jar:1.1.5:compile
-unknown, org.apache.calcite.avatica:avatica-core:jar:1.9.0:compile
-unknown, org.apache.calcite:calcite-core:jar:1.11.0:compile
-unknown, org.apache.calcite:calcite-linq4j:jar:1.11.0:compile
-unknown, org.apache.commons:commons-exec:jar:1.3:compile
-unknown, org.apache.commons:commons-math3:jar:3.4.1:compile
-unknown, org.apache.curator:curator-client:jar:2.8.0:compile
-unknown, org.apache.curator:curator-framework:jar:2.8.0:compile
-unknown, org.apache.curator:curator-recipes:jar:2.8.0:compile
-unknown, org.apache.hadoop:hadoop-annotations:jar:2.7.4:compile
-unknown, org.apache.hadoop:hadoop-auth:jar:2.7.4:compile
-unknown, org.apache.hadoop:hadoop-common:jar:2.7.4:compile
-unknown, org.apache.hadoop:hadoop-hdfs:jar:2.7.4:compile
-unknown, org.apache.htrace:htrace-core:jar:3.2.0-incubating:compile
-unknown, org.apache.logging.log4j:log4j-api:jar:2.9.1:compile
-unknown, org.apache.logging.log4j:log4j-core:jar:2.9.1:compile
-unknown, org.apache.lucene:lucene-analyzers-common:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-analyzers-kuromoji:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-analyzers-phonetic:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-backward-codecs:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-classification:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-codecs:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-core:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-expressions:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-grouping:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-highlighter:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-join:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-memory:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-misc:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-queries:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-queryparser:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-sandbox:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-spatial3d:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-spatial-extras:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-spatial:jar:6.6.1:compile
-unknown, org.apache.lucene:lucene-suggest:jar:6.6.1:compile
-unknown, org.apache.solr:solr-core:jar:6.6.1:compile
-unknown, org.apache.solr:solr-solrj:jar:6.6.1:compile
-unknown, org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
-unknown, org.codehaus.woodstox:stax2-api:jar:3.1.4:compile
-unknown, org.codehaus.woodstox:woodstox-core-asl:jar:4.4.1:compile
-unknown, org.elasticsearch.client:elasticsearch-rest-client:jar:5.6.9:compile
-unknown, org.elasticsearch.client:transport:jar:5.6.9:compile
-unknown, org.elasticsearch:elasticsearch:jar:5.6.9:compile
-unknown, org.elasticsearch:jna:jar:4.4.0-1:compile
-unknown, org.elasticsearch.plugin:lang-mustache-client:jar:5.6.9:compile
-unknown, org.elasticsearch.plugin:parent-join-client:jar:5.6.9:compile
-unknown, org.elasticsearch.plugin:percolator-client:jar:5.6.9:compile
-unknown, org.elasticsearch.plugin:reindex-client:jar:5.6.9:compile
-unknown, org.elasticsearch.plugin:transport-netty3-client:jar:5.6.9:compile
-unknown, org.elasticsearch.plugin:transport-netty4-client:jar:5.6.9:compile
-unknown, org.elasticsearch:securesm:jar:1.2:compile
-unknown, org.noggit:noggit:jar:0.6:compile
-unknown, org.restlet.jee:org.restlet.ext.servlet:jar:2.3.0:compile
-unknown, org.restlet.jee:org.restlet:jar:2.3.0:compile
-
-10307, org.codehaus.janino:janino:jar:2.7.5:compile
-11234, org.ow2.asm:asm-commons:jar:5.1:compile
-11234, org.ow2.asm:asm:jar:5.1:compile
-13192, org.hdrhistogram:HdrHistogram:jar:2.1.9:compile
-8246, org.mapdb:mapdb:jar:1.0.8:compile
-6855, org.slf4j:slf4j-api:jar:1.7.10:compile
-13102, org.yaml:snakeyaml:jar:1.15:compile
-6924, org.apache.zookeeper:zookeeper:jar:3.4.10:compile
-8499, org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
-10307, org.codehaus.janino:commons-compiler:jar:2.7.6:compile
-13506, org.apache.httpcomponents:httpasyncclient:jar:4.1.2:compile
-11714, org.apache.httpcomponents:httpclient-cache:jar:4.5.5:compile
-11713, org.apache.httpcomponents:httpclient:jar:4.5.5:compile
-11716, org.apache.httpcomponents:httpcore:jar:4.4.1:compile
-11716, org.apache.httpcomponents:httpcore:jar:4.4.5:compile
-11716, org.apache.httpcomponents:httpcore:jar:4.4.9:compile
-13509, org.apache.httpcomponents:httpcore-nio:jar:4.4.9:compile
-13174, net.sf.jopt-simple:jopt-simple:jar:5.0.2:compile
-9834, org.antlr:antlr4-runtime:jar:4.5.1-1:compile
-locationtech.spatial4j, org.locationtech.spatial4j:spatial4j:jar:*
-
-8757, com.ning:compress-lzf:*:1.0
-8958, com.ning:compress-lzf:*:1.0.3
-
-commons-math3-3.4.1.jar
-delete-by-query-2.4.6.jar
-elasticsearch-2.4.6.jar
-hppc-0.7.1.jar
-jline-3.5.1.jar
-lucene-backward-codecs-6.6.1.jar
-lucene-analyzers-common-5.5.4.jar
-lucene-grouping-5.5.4.jar
-lucene-highlighter-5.5.4.jar
-lucene-join-5.5.4.jar
-lucene-memory-5.5.4.jar
-lucene-misc-5.5.4.jar
-lucene-queries-5.5.4.jar
-lucene-queryparser-5.5.4.jar
-lucene-spatial-5.5.4.jar
-lucene-spatial3d-5.5.4.jar
-lucene-suggest-5.5.4.jar
-lucene-sandbox-5.5.4.jar
-noggit-0.6.jar
-solr-solrj-5.5.4.jar
-solr-solrj-6.6.1.jar
-woodstox-core-asl-4.4.1.jar
-
-13504, stax2-api-3.1.4.jar
-16268, jsonld-java-0.11.1.jar
-16357, jsonld-java-0.12.0.jar
-
-javax.servlet:servlet-api:2.2
-javax.servlet:servlet-api:2.3
-javax.servlet:servlet-api:2.5
-javax.servlet:javax.servlet-api:3.0.1
-javax.servlet:javax.servlet-api:3.1
-(& (= groupid "javax.servlet")(= artifactid "javax.servlet-api")(>= version (v "4.0"))(<= version (v "4.1"))
-(& (= groupid "javax.servlet")(= artifactid "javax.servlet-api")(>= version (v "4.0.2")))
-
-7816, org.yaml:snakeyaml:bundle:1.14
-7816, org.yaml.snakeyaml_1.14.0.v201505061500.jar
-
-technology.deeplearning4j, org.deeplearning4:*:*:*
-
-11961, com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0:compile
-11151, com.fasterxml.jackson.core:jackson-annotations:jar:2.7.0:compile
-com.fasterxml.jackson.core:jackson-core:jar:2.4.4:compile
-com.fasterxml.jackson.core:jackson-core:jar:2.7.9:compile
-com.fasterxml.jackson.core:jackson-databind:jar:2.4.4:compile
-com.fasterxml.jackson.core:jackson-databind:jar:2.7.9:compile
-com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:jar:2.6.6:compile
-com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.5.4:compile
-com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.5.1:compile
-com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.5.1:compile
-com.fasterxml.jackson.datatype:jackson-datatype-guava:jar:2.5.1:compile
-com.fasterxml.jackson.datatype:jackson-datatype-jdk7:jar:2.5.1:compile
-com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.4.4:compile
-com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.5.4:compile
-com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.5.1:compile
-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.4.4:compile
-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.5.4:compile
-com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.5.1:compile
-com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.5.1:compile
-com.fasterxml.jackson.module:jackson-module-afterburner:jar:2.5.1:compile
-com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.5.1:compile
-com.fasterxml.jackson.module:jackson-module-paranamer:jar:2.8.7:compile
-com.fasterxml.jackson.module:jackson-module-scala_2.11:jar:2.4.4:compile
-com.fasterxml.jackson.module:jackson-module-scala_2.11:jar:2.8.7:compile
-
-// FIXME Missing groupids weakens the match
-4269, *:jackson-mapper:jar:1.5.3
-6285, *:jackson-core:jar:1.8.1
-6286, *:jackson-mapper:jar:1.8.1
-7935, *:jackson-annotations:jar:2.2.2
-8450, *:jackson-annotations:jar:2.3.0
-8452, *:jackson-databind:jar:2.3.0
-8453, *:jackson-module-scala:jar:2.3.0
-9099, *:jackson-jaxrs-providers:jar:2.5.0
-9100, *:jackson-datatype-guava:jar:2.5.0
-9101, *:jackson-databind:jar:2.5.0
-9102, *:jackson-annotations:jar:2.5.0
-9103, *:jackson-core:jar:2.5.0
-9104, *:jackson-dataformat-yaml:jar:2.5.0
-9105, *:jackson-module-jaxb-annotations:jar:2.5.0
-9106, *:jackson-jaxrs-base:jar:2.5.0
-9598, *:jackson-core:jar:2.5.1
-10186, *:jackson-core-asl:jar:1.9.13
-10187, *:jackson-mapper-asl:jar:1.9.13
-10196, *:jackson-annotations:jar:2.6.0
-10527, *:jackson-annotations:jar:2.6.2
-10692, *:jackson-core:jar:2.6.0
-10701, *:jackson-datatype-joda:jar:2.5.0
-10843, *:jackson-core:jar:2.3.3
-11094, *:jackson-databind:jar:2.7.2
-11151, *:jackson-annotations:jar:2.7.0
-11302, *:jackson-databind:jar:2.7.3
-11512, *:jackson-databind:jar:2.7.4
-11513, *:jackson-annotations:jar:2.7.4
-11960, *:jackson-databind:jar:2.4.2
-11961, *:jackson-annotations:jar:2.4.0
-11962, *:jackson-core:jar:2.4.2
-12054, *:jackson-jaxrs-base:jar:2.6.2
-12055, *:jackson-datatype-guava:jar:2.6.2
-12056, *:jackson-module-jaxb-annotations:jar:2.6.2
-12057, *:jackson-jaxrs-json-provider:jar:2.6.2
-12265, *:jackson-annotations:jar:2.8.0
-12266, *:jackson-core:jar:2.8.3
-12267, *:jackson-databind:jar:2.8.3
-12268, *:jackson-datatype-jdk8:jar:2.8.3
-12303, *:jackson-databind:jar:2.8.2
-12305, *:jackson-core:jar:2.8.2
-12441, *:jackson-module-jaxb-annotations:jar:2.7.5
-12826, *:jackson-jaxrs:jar:1.9.3
-13170, *:jackson-core:jar:2.8.6
-13171, *:jackson-dataformat-yaml:jar:2.8.6
-13172, *:jackson-dataformat-smile:jar:2.8.6
-13173, *:jackson-dataformat-cbor:jar:2.8.6
-13363, *:jackson-core:jar:2.8.7
-13364, *:jackson-databind:jar:2.8.7
-13365, *:jackson-annotations:jar:2.8.7
-13487, *:jackson-annotations:jar:2.7.7
-13488, *:jackson-core:jar:2.7.7
-13489, *:jackson-dataformat-yaml:jar:2.7.7
-13490, *:jackson-databind:jar:2.7.7
-13491, *:jackson-datatype-joda:jar:2.7.7
-13492, *:jackson-jaxrs-json-provider:jar:2.7.7
-13494, *:jackson-jaxrs-base:jar:2.7.7
-13495, *:jackson-module-jaxb-annotations:jar:2.7.7
-13503, *:jackson-databind:jar:2.8.6
-13604, *:jackson-annotations:jar:2.6.3
-13608, *:jackson-dataformat-cbor:jar:2.6.6
-13945, *:jackson-module-jaxb-annotations:jar:2.6.2
-14149, *:jackson-jaxrs-base:jar:2.9.0
-14150, *:jackson-jaxrs-json-provider:jar:2.9.0
-14151, *:jackson-datatype-guava:jar:2.9.0
-14284, *:jackson-annotations:jar:2.6.7
-14285, *:jackson-core:jar:2.6.7
-14286, *:jackson-databind:jar:2.6.7
-14287, *:jackson-datatype-joda:jar:2.6.7
-14475, *:jackson-core:jar:2.8.10
-14476, *:jackson-databind:jar:2.8.10
-14529, *:jackson-coreutils:jar:1.8
-14694, *:jackson-jaxrs-base:jar:2.9.2
-14695, *:jackson-jaxrs-json-providers:jar:2.9.2
-14696, *:jackson-datatype-guava:jar:2.9.2
-15265, *:jackson-core:jar:2.7.4
-15463, *:jackson-dataformat-yaml:jar:2.8.9
-15726, *:jackson-module-jaxb-annotations:jar:2.9.2
-15976, *:jackson-annotations:jar:2.5.4
-16156, *:jackson-jaxrs-providers:jar:2.8.10
-16272, *:jackson-annotations:jar:2.9.0
-16273, *:jackson-core:jar:2.9.0
-16274, *:jackson-databind:jar:2.9.0
-16298, *:jackson-core:jar:2.8.10
-16299, *:jackson-databind:jar:2.8.10
-16700, *:jackson-jaxrs:jar:1.9.13
-16703, *:jackson-xc:jar:1.9.13
-16916, *:jackson-jaxrs-base:jar:2.8.10
-16917, *:jackson-databind:jar:2.8.10
-16919, *:jackson-annotations:jar:2.8.10
-16920, *:jackson-module-jaxb-annotations:jar:2.8.10
-16958, *:jackson-dataformat-properties:jar:2.8.6
-
-10704,com.zaxxer:HikariCP-java7:jar:2.4.12:compile
-joda-time:joda-time:jar:2.2:compile
-12631, joda-time:joda-time:jar:2.7:compile
-joda-time:joda-time:jar:2.8.1:compile
-9099, com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.5.0:compile
-
-6459, commons-beanutils:commons-beanutils-core:jar:1.8.0:compile
-commons-dbutils:commons-dbutils:jar:1.7:compile
-1907, commons-logging:commons-logging-api:jar:1.1.1:compile
-1112, commons-logging:commons-logging-api:jar:1.1:compile
-4843, commons-net:commons-net:jar:2.2:compile
-6219, commons-net:commons-net:jar:3.1:compile
-14961, com.google.guava:guava:jar:23.4:compile
-15526, com.google.guava:guava:jar:23.5:compile
-
-args4j:args4j:jar:2.32:compile
-1937, asm:asm:jar:3.1:compile
-
-10015, com.beust:jcommander:jar:1.27:compile
-14022, org.apache.felix:org.apache.felix.gogo.command:bundle:1.0.2
-
-16850, com.ibm.icu_62.1.0.v20180727-1652.jar
-16950, com.ibm.icu.source_62.1.0.v20180727-1652.jar
-17017, org.apache.ant.source_1.10.5.v20180808-0324.jar
-16737, org.apache.batik.constants_1.10.0.v20180703-1553.jar
-16737, org.apache.batik.constants.source_1.10.0.v20180703-1553.jar
-16733, org.apache.batik.css_1.10.0.v20180703-1553.jar
-16733, org.apache.batik.css.source_1.10.0.v20180703-1553.jar
-16735, org.apache.batik.i18n_1.10.0.v20180703-1553.jar
-16735, org.apache.batik.i18n.source_1.10.0.v20180703-1553.jar
-16734, org.apache.batik.util_1.10.0.v20180703-1553.jar
-16734, org.apache.batik.util.source_1.10.0.v20180703-1553.jar
-9217, org.apache.commons.codec_1.10.0.v20180409-1845.jar
-9217, org.apache.commons.codec.source_1.10.0.v20180409-1845.jar
-10162, org.apache.commons.logging_1.2.0.v20180409-1502.jar
-10162, org.apache.commons.logging.source_1.2.0.v20180409-1502.jar
-14022, org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
-16863, org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
-16863, org.apache.felix.gogo.runtime.source_1.1.0.v20180713-1646.jar
-16862, org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
-16862, org.apache.felix.gogo.shell.source_1.1.0.v20180713-1646.jar
-15642, org.apache.httpcomponents.httpclient_4.5.5.v20180409-1525.jar
-15642, org.apache.httpcomponents.httpclient.source_4.5.5.v20180409-1525.jar
-15641, org.apache.httpcomponents.httpcore_4.4.9.v20180409-1525.jar
-15641, org.apache.httpcomponents.httpcore.source_4.4.9.v20180409-1525.jar
-15026, org.apache.lucene.core_7.1.0.v20171214-1510.jar
-16545, org.objectweb.asm_6.2.0.v20180807-1520.jar
-16545, org.objectweb.asm.source_6.2.0.v20180807-1520.jar
-16545, org.objectweb.asm.tree_6.2.0.v20180807-1520.jar
-16545, org.objectweb.asm.tree.source_6.2.0.v20180807-1520.jar
-
-14022, org.apache.felix:org.apache.felix.gogo.command:bundle:1.0.2
-16850, *:com.ibm.icu:jar:62.1.0
-16737, *:org.apache.batik.constants:jar:1.10.0
-16733, *:org.apache.batik.css:jar:1.10.0
-16735, *:org.apache.batik.i18n:jar:1.10.0
-16734, *:org.apache.batik.util:jar:1.10.0
-9217, *:org.apache.commons.codec:jar:1.10.0
-10162, *:org.apache.commons.logging:jar:1.2.0
-16863, *:org.apache.felix.gogo.runtime:jar:1.1.0
-16862, *:org.apache.felix.gogo.shell:jar:1.1.0
-15642, *:org.apache.httpcomponents.httpclient:jar:4.5.5
-15026, *:org.apache.lucene.core:jar:7.1.0
-16545, *:org.objectweb.asm:jar:6.2.0
-16545, *:org.objectweb.asm.tree:jar:6.2.0
-
-antlr-generator-3.2.1.jar
-change-category.jar
-org.objectweb.asm_6.2.1.v20180823-1831.jar
-org.objectweb.asm.source_6.2.1.v20180823-1831.jar
-org.objectweb.asm.tree_6.2.1.v20180823-1831.jar
-org.objectweb.asm.tree.source_6.2.1.v20180823-1831.jar
-
-15691, org.apache.ant.source_1.10.3.v20180417-1627.jar
-14973, org.apache.batik.constants_1.9.1.v20180227-1645.jar
-14973, org.apache.batik.constants.source_1.9.1.v20180227-1645.jar
-14016, org.apache.batik.css_1.9.0.*.jar
-14017, org.apache.batik.i18n_1.9.0.*.jar
-14017, org.apache.batik.i18n.source_1.9.0.*.jar
-14018, org.apache.batik.util_1.9.0.0.jar
-15165, org.apache.commons.compress_1.15.0.v20180119-1613.jar
-14023, org.apache.felix.gogo.runtime_1.0.6.v20170914-1324.jar
-14024, org.apache.felix.gogo.shell_1.0.0.v20170914-1324.jar
-1568, org.apache.ws.commons.util_1.0.1.*.jar
-12549, org.junit.jupiter.api_5.0.0.v20170910-2246.jar
-12549, org.junit.jupiter.engine_5.0.0.v20170910-2246.jar
-12549, org.junit.jupiter.migrationsupport_5.0.0.v20170910-2246.jar
-12549, org.junit.jupiter.params_5.0.0.v20170910-2246.jar
-12549, org.junit.platform.commons_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.engine_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.launcher_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.runner_1.0.0.v20170910-2246.jar
-12549, org.junit.platform.suite.api_1.0.0.v20170910-2246.jar
-12549, org.junit.vintage.engine_4.12.0.v20170910-2246.jar
-
-13194, com.carrotsearch:hppc:jar:0.7.1:compile
-13390, com.google.code.findbugs:annotations:jar:2.0.1:compile
-11642, com.google.inject.extensions:guice-multibindings:jar:4.1.0:compile
-7568, com.sun.xml.bind:jaxb-impl:jar:2.2.5:compile
-11008, io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
-11908, io.netty:netty-all:jar:4.1.15.Final:compile
-11908, io.netty:netty-transport-native-epoll:jar:4.1.15.Final:compile
-11908, io.netty:netty-transport-native-unix-common:jar:4.1.15.Final:compile
-13977, javax.batch:javax.batch-api:jar:1.0.1:compile
-3555, javax.inject:javax.inject:jar:1:compile
-unknown, org.apache.activemq:activemq-all:jar:5.14.5:compile
-16940, org.apache.activemq:activemq-amqp:jar:5.14.5:compile
-13263, org.apache.activemq:activemq-client:jar:5.14.5:compile
-4692, org.apache.ant:ant-launcher:jar:1.8.1:compile
-unknown, org.apache.qpid:proton-j:jar:0.19.0:compile
-14078, org.apache.qpid:proton-j:jar:0.20.0:compile
-14079, org.apache.qpid:qpid-jms-client:jar:0.24.0:compile
-12148, org.apache.tomcat:tomcat-servlet-api:jar:8.0.38:compile
-12148, org.apache.tomcat:tomcat-websocket-api:jar:8.0.38:compile
-13522, org.elasticsearch.plugin:lang-mustache-client:jar:5.3.0:compile
-13530, org.elasticsearch.plugin:percolator-client:jar:5.3.0:compile
-13524, org.elasticsearch.plugin:reindex-client:jar:5.3.0:compile
-13527, org.elasticsearch.plugin:transport-netty3-client:jar:5.3.0:compile
-13528, org.elasticsearch.plugin:transport-netty4-client:jar:5.3.0:compile
-13101, org.fusesource.hawtbuf:hawtbuf-proto:jar:1.11:compile
-13313, org.fusesource.hawtdispatch:hawtdispatch-scala-2.11:jar:1.22:compile
-13276, org.glassfish.hk2:hk2-utils:jar:2.5.0-b05:compile
-2027, org.hamcrest:hamcrest-core:jar:1.1:compile
-11207, org.jolokia:jolokia-jvm:jar:agent:1.3.3:compile
-10111, org.osgi:org.osgi.compendium:jar:4.3.1:compile
-12019, org.quartz-scheduler:quartz:jar:2.2.3:compile
-10651, org.quartz-scheduler:quartz:jar:2.2.2:compile
-7794, org.quartz-scheduler:quartz:jar:2.2.1:compile
-
-14693, com.fasterxml.jackson.core.jackson-annotations_2.9.2.v20180207-1730.jar
-14691, com.fasterxml.jackson.core.jackson-core_2.9.2.v20180207-1730.jar
-14692, com.fasterxml.jackson.core.jackson-databind_2.9.2.v20180207-1730.jar
-14696, com.fasterxml.jackson.datatype.jackson-datatype-guava_2.9.2.v20180207-1730.jar
-14694, com.fasterxml.jackson.jaxrs.jackson-jaxrs-base_2.9.2.v20180207-1730.jar
-14695, com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider_2.9.2.v20180207-1730.jar
-7936, com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider_2.2.2.*.jar
-15411, com.github.jnr.constants_0.9.8.v20180207-1730.jar
-15412, com.github.jnr.enxio_0.16.0.v20180207-1730.jar
-15413, com.github.jnr.ffi_2.1.4.v20180207-1730.jar
-15414, com.github.jnr.jffi_1.2.15.v20180207-1730.jar
-15414, com.github.jnr.jffi.native_1.2.15.v20180207-1730.jar
-15410, com.github.jnr.unixsocket_0.18.0.v20180207-1730.jar
-14965, com.google.gson_2.8.2.v20180104-1110.jar
-13165, com.gradleware.tooling.client_0.19.0.*.jar
-13165, com.gradleware.tooling.model_0.19.0.*.jar
-13165, com.gradleware.tooling.utils_0.19.0.*.jar
-rt.ecf, com.mycorp.examples.timeservice*.jar
-17014, com.spotify.docker.client_8.11.7.v20180731-1413.jar
-15443, com.spotify.docker.client_8.9.2.v20180207-1730.jar
-15644, com.sun.jna_4.5.1.v20180403-1933.jar
-15645, com.sun.jna.platform_4.5.1.v20180403-1933.jar
-15691, org.apache.ant.source_1.10.3.v20180417-1627.jar
-16737, org.apache.batik.constants_1.10.0.v20180703-1553.jar
-16737, org.apache.batik.constants.source_1.10.0.v20180703-1553.jar
-16733, org.apache.batik.css_1.10.0.v20180703-1553.jar
-16733, org.apache.batik.css.source_1.10.0.v20180703-1553.jar
-16735, org.apache.batik.i18n_1.10.0.v20180703-1553.jar
-16735, org.apache.batik.i18n.source_1.10.0.v20180703-1553.jar
-16734, org.apache.batik.util_1.10.0.v20180703-1553.jar
-16734, org.apache.batik.util.source_1.10.0.v20180703-1553.jar
-15165, org.apache.commons.compress_1.15.0.v20180119-1613.jar
-10496, org.apache.derby_10.11.1.1_v201605202053.jar
-14022, org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
-14023, org.apache.felix.gogo.runtime_1.0.6.v20170914-1324.jar
-14024, org.apache.felix.gogo.shell_1.0.0.v20170914-1324.jar
-15026, org.apache.lucene.core_7.1.0.v20171214-1510.jar
-15541, org.apache.lucene.misc_7.1.0.v20180220-1923.jar
-17381, org.apache.lucene.queryparser_7.1.0.v20180828-2118.jar
-16026, org.objectweb.asm.analysis_6.1.1.v20180414-0329.jar
-16026, org.objectweb.asm.commons_6.1.1.v20180414-0329.jar
-16545, org.objectweb.asm.commons_6.2.0.*.jar
-16026, org.objectweb.asm.util_6.1.1.v20180414-0329.jar
-11911, org.sonatype.m2e.mavenarchiver.feature_0.17.2.201606141937-signed-20160830073346.jar
-
-15280, io.netty:netty-codec-dns:jar:4.1.19.Final:compile
-15280, io.netty:netty-codec-http2:jar:4.1.19.Final:compile
-15280, io.netty:netty-codec-mqtt:jar:4.1.19.Final:compile
-15280, io.netty:netty-codec-socks:jar:4.1.19.Final:compile
-15280, io.netty:netty-handler-proxy:jar:4.1.19.Final:compile
-15280, io.netty:netty-resolver-dns:jar:4.1.19.Final:compile
-15280, io.netty:netty-tcnative-boringssl-static:jar:2.0.10.Final:compile
-16586, io.opentracing.contrib:opentracing-tracerresolver:jar:0.1.4:compile
-16576, io.opentracing.contrib:opentracing-vertx-web:jar:0.1.0:compile
-16542, io.opentracing:opentracing-api:jar:0.31.0:compile
-16543, io.opentracing:opentracing-noop:jar:0.31.0:compile
-16981, org.springframework.security:spring-security-crypto:jar:4.2.7.RELEASE:compile
-
-# Experimental "workswith" CQs for Hono
-13633, (& (= project "iot.hono")(= mvn "io.fabric8:docker-maven-plugin:0.21.0"))
-13633, (& (= project "iot.hono")(= mvn "org.springframework.boot:spring-boot-maven-plugin:1.4.5.RELEASE"))
-13633, (& (= project "iot.hono")(= mvn "org.codehaus.mojo:buildnumber-maven-plugin:1.4"))
-13633, (& (= project "iot.hono")(= mvn "org.sonatype.plugins:nexus-staging-maven-plugin:1.6.7"))
-13633, (& (= project "iot.hono")(= mvn "org.apache.jmeter:ApacheJMeter_core:3.2"))
-13633, (& (= project "iot.hono")(= mvn "org.apache.jmeter:jorphan:3.2"))
-
-16838, io.netty:netty-codec-dns:jar:4.1.25.Final:compile
-16838, io.netty:netty-codec-http2:jar:4.1.25.Final:compile
-16838, io.netty:netty-codec-socks:jar:4.1.25.Final:compile
-16838, io.netty:netty-handler-proxy:jar:4.1.25.Final:compile
-16838, io.netty:netty-resolver-dns:jar:4.1.25.Final:compile
-16838, io.netty:netty-transport-native-epoll:jar:4.1.25.Final:compile
-16838, io.netty:netty-transport-native-kqueue:jar:4.1.25.Final:compile
-16838, io.netty:netty-transport-native-unix-common:jar:4.1.25.Final:compile
-unknown, org.mvel:mvel2:jar:2.3.1.Final:compile
-
-14002, com.eclipsesource.jaxrs.provider.gson_2.3.0.201602281253.jar
-14002, com.eclipsesource.jaxrs.provider.security_2.2.0.201602281253.jar
-10226, com.gwt.user_1.0.0.jar
-13847, io.netty.codec-mqtt_4.1.9.Final.jar
-13847, io.netty.transport-native-epoll_4.1.9.Final.jar
-12230, org.objenesis_2.4.0.jar
-
-13504, org.codehaus.woodstox:stax2-api:jar:3.1.4:compile
-12438, org.yaml:snakeyaml:jar:1.12:compile
-6219, commons-net:commons-net:jar:3.1:compile
-
-16901, commons-math3-3.4.jar
-16795, commons-math3-3.5.jar
-17647, delete-by-query-2.4.6.jar
-16902, elasticsearch-2.4.6.jar
-16905, hppc-0.7.1.jar
-16904, jline-3.5.1.jar
-locationtech.jts, jts-core-1.15.1.jar
-16887, lucene-analyzers-common-5.5.0.jar
-16503, lucene-analyzers-common-6.6.4.jar
-11991, lucene-backward-codecs-5.5.0.jar
-16886, lucene-backward-codecs-6.6.1.jar
-11989, lucene-core-5.5.0.jar
-16888, lucene-grouping-5.5.0.jar
-16889, lucene-highlighter-5.5.0.jar
-16890, lucene-join-5.5.0.jar
-16891, lucene-memory-5.5.0.jar
-16892, lucene-misc-5.5.0.jar
-16893,lucene-queries-5.5.0.jar
-16894, lucene-queryparser-5.5.0.jar
-16898, lucene-sandbox-5.5.0.jar
-16896, lucene-spatial3d-5.5.0.jar
-16895, lucene-spatial-5.5.0.jar
-16897, lucene-suggest-5.5.0.jar
-16885, noggit-0.6.jar
-16899, solr-solrj-5.5.0.jar
-16512, solr-solrj-6.6.4.jar
-16906, woodstox-core-asl-4.4.1.jar
-5837, zookeeper-3.4.2.jar
-6924, zookeeper-3.4.5.jar
-
-16500, lucene-core-6.6.4.jar
-16501, lucene-queries-6.6.4.jar
-16502, lucene-highlighter-6.6.4.jar
-16503, lucene-analyzers-common-6.6.4.jar
-16504, lucene-join-6.6.4.jar
-16505, lucene-memory-6.6.4.jar
-16506, lucene-queryparser-6.6.4.jar
-16507, lucene-sandbox-6.6.4.jar
-16508, lucene-spatial-6.6.4.jar
-16509, lucene-spatial-extras-6.6.4.jar
-16510, lucene-misc-6.6.4.jar
-16511, lucene-spatial3d-6.6.4.jar
-16514, lucene-analyzers-kuromoji-6.6.4.jar
-16515, lucene-analyzers-phonetic-6.6.4.jar
-16516, lucene-backward-codecs-6.6.4.jar
-16517, lucene-classification-6.6.4.jar
-16518, lucene-codecs-6.6.4.jar
-16519, lucene-expressions-6.6.4.jar
-16520, lucene-grouping-6.6.4.jar
-16521, lucene-suggest-6.6.4.jar
-16549, lucene-test-framework-6.6.4.jar
-
-rt.ecf, ch.ethz.iks.r_osgi.remote_*.jar
-rt.ecf, ch.ethz.iks.r_osgi.remote.source_*.jar
-13165, com.gradleware.tooling.client_0.19.0.*.jar
-13165, com.gradleware.tooling.model_0.19.0.*.jar
-13165, com.gradleware.tooling.utils_0.19.0.*.jar
-org.jivesoftware.smack_3.3.300.v20180303-0057.jar
-org.mozilla.javascript_1.7.5.v201504281450.jar
-org.mozilla.javascript.source_1.7.5.v201504281450.jar
-16545, org.objectweb.asm.commons_6.2.0.*.jar
-16545, org.objectweb.asm.source_6.2.0.*.jar
-16545, org.objectweb.asm.tree_6.2.0.*.jar
-16545, org.objectweb.asm.tree.source_6.2.0.*.jar
-technology.tm4e, tm-feature_0.1.0.201802091213.jar
-technology.tm4e, tm-feature_0.2.0.201809031154.jar
-technology.tm4e, tm-feature_0.2.0.201809140810.jar
-
-#org.w3c.dom.svg.extension_1.1.0.v201706222054.jar
-birt, (& (= Built-By "genie.birt")(= Bundle-Name "Extension for org.w3c.dom.svg"))
-
-12614, io.netty:netty-common:jar:4.1.27.Final:compile
-13511, io.netty:netty-buffer:jar:4.1.27.Final:compile
-13512, io.netty:netty-codec:jar:4.1.27.Final:compile
-13515, io.netty:netty-codec-http:jar:4.1.27.Final:compile
-13517, io.netty:netty-handler:jar:4.1.27.Final:compile
-13518, io.netty:netty-resolver:jar:4.1.27.Final:compile
-13519, io.netty:netty-transport:jar:4.1.27.Final:compile
-13983, com.fasterxml.jackson.core:jackson-core:jar:2.9.6:compile
-13984, com.fasterxml.jackson.core:jackson-databind:jar:2.9.6:compile
-13985, com.fasterxml.jackson.core:jackson-annotations:jar:2.9.6:compile
-rt.vertx, io.vertx:vertx-codegen:jar:3.6.0-SNAPSHOT:compile
-rt.vertx, io.vertx:vertx-docgen:jar:0.9.1:compile
-17453, unknown, io.netty:netty-codec-dns:jar:4.1.27.Final:compile
-17453, unknown, io.netty:netty-codec-http2:jar:4.1.27.Final:compile
-17453, unknown, io.netty:netty-codec-socks:jar:4.1.27.Final:compile
-17453, unknown, io.netty:netty-handler-proxy:jar:4.1.27.Final:compile
-17453, unknown, io.netty:netty-resolver-dns:jar:4.1.27.Final:compile
-17453, unknown, io.netty:netty-transport-native-epoll:jar:4.1.27.Final:compile
-17453, unknown, io.netty:netty-transport-native-kqueue:jar:4.1.27.Final:compile
-17453, unknown, io.netty:netty-transport-native-unix-common:jar:4.1.27.Final:compile
-
-16589, unknown, org.apache.logging.log4j:log4j-core:jar:2.8.2:provided
-
-unknown, com.google.code.findbugs:annotations:jar:2.0.1:compile
-unknown, io.opentracing:opentracing-api:jar:0.31.0:compile
-unknown, io.rest-assured:json-path:jar:3.0.6:compile
-unknown, io.rest-assured:rest-assured-common:jar:3.0.6:compile
-unknown, io.rest-assured:rest-assured:jar:3.0.6:compile
-unknown, io.rest-assured:xml-path:jar:3.0.6:compile
-unknown, io.undertow:undertow-core:jar:1.4.0.Final:compile
-unknown, io.undertow:undertow-core:jar:1.4.11.Final:compile
-unknown, javax.ejb:ejb-api:jar:3.0:provided
-unknown, javax.enterprise:cdi-api:jar:1.2:compile
-unknown, javax.enterprise:cdi-api:jar:1.2:provided
-unknown, javax.inject:javax.inject:jar:1:compile
-unknown, javax.inject:javax.inject:jar:1:provided
-unknown, javax:javaee-api:jar:7.0:provided
-unknown, javax.security.jacc:javax.security.jacc-api:jar:1.5:provided
-unknown, javax.ws.rs:javax.ws.rs-api:jar:2.1:compile
-unknown, joda-time:joda-time:jar:2.2:compile
-unknown, junit:junit-dep:jar:4.10:compile
-unknown, net.minidev:accessors-smart:jar:1.2:compile
-unknown, net.minidev:json-smart:jar:1.3.1:compile
-unknown, net.minidev:json-smart:jar:2.3:compile
-unknown, net.wasdev.wlp.starters.microprofile:runtime-pom:pom:0.0.1:runtime
-unknown, net.wasdev.wlp.starters.microprofile:server-snippet:xml:0.0.1:runtime
-unknown, org.apache.ant:ant:jar:1.7.0:compile
-unknown, org.apache.ant:ant-launcher:jar:1.7.0:compile
-unknown, org.apache.commons:commons-collections4:jar:4.1:compile
-unknown, org.apache.commons:commons-lang3:jar:3.2.1:compile
-unknown, org.apache.geronimo.specs:geronimo-annotation_1.2_spec:jar:1.0:provided
-unknown, org.apache.geronimo.specs:geronimo-atinject_1.0_spec:jar:1.0:compile
-unknown, org.apache.geronimo.specs:geronimo-atinject_1.0_spec:jar:1.0:provided
-unknown, org.apache.httpcomponents:httpmime:jar:4.3.6:compile
-unknown, org.apache.maven.wagon:wagon-http-shared:jar:2.6:compile
-unknown, org.apache.maven.wagon:wagon-http-shared:jar:2.6:runtime
-unknown, org.beanshell:bsh:jar:2.0b4:compile
-unknown, org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1:compile
-unknown, org.codehaus.groovy:groovy:jar:2.3.7:compile
-unknown, org.codehaus.groovy:groovy:jar:2.4.12:compile
-unknown, org.codehaus.groovy:groovy-json:jar:2.3.7:compile
-unknown, org.codehaus.groovy:groovy-json:jar:2.4.12:compile
-unknown, org.codehaus.groovy:groovy-xml:jar:2.3.7:compile
-unknown, org.codehaus.groovy:groovy-xml:jar:2.4.12:compile
-unknown, org.codehaus.plexus:plexus-compiler-api:jar:2.3:runtime
-unknown, org.codehaus.swizzle:swizzle-stream:jar:1.6.2:compile
-unknown, org.codehaus.woodstox:stax2-api:jar:3.1.4:compile
-unknown, org.hamcrest:hamcrest-core:jar:1.1:compile
-unknown, org.hamcrest:hamcrest-integration:jar:1.2.1:compile
-unknown, org.hamcrest:hamcrest-library:jar:1.2.1:compile
-unknown, org.hamcrest:java-hamcrest:jar:2.0.0.0:compile
-unknown, org.osgi:org.osgi.annotation.versioning:jar:1.0.0:compile
-unknown, org.osgi:org.osgi.annotation.versioning:jar:1.0.0:provided
-unknown, org.reactivestreams:reactive-streams-examples:jar:1.0.2:compile
-unknown, org.reactivestreams:reactive-streams:jar:1.0.2:compile
-unknown, org.reactivestreams:reactive-streams-tck:jar:1.0.2:compile
-unknown, org.xmlunit:xmlunit-core:jar:2.3.0:compile
-unknown, org.xmlunit:xmlunit-legacy:jar:2.3.0:compile
-unknown, org.yaml:snakeyaml:jar:1.12:compile
-unknown, org.yaml:snakeyaml:jar:1.17:compile
-unknown, org.yaml:snakeyaml:jar:1.18:compile
-
-
-
-15483, net.bytebuddy.byte-buddy_1.7.9.v20180420-1519.jar
-15489, net.bytebuddy.byte-buddy-agent_1.7.9.v20180420-1519.jar
-14970, org.apache.batik.css_1.9.1.v20180313-1559.jar
-14972, org.apache.batik.i18n_1.9.1.v20180227-1645.jar
-14971, org.apache.batik.util_1.9.1.v20180227-1645.jar
-17682, org.apache.lucene.analyzers-common_7.5.0.v20181003-1532.jar
-17681, org.apache.lucene.core_7.5.0.v20181003-1532.jar
-15481, rg.mockito_2.13.0.v20180426-1843.jar
-15482, org.objenesis_2.6.0.v20180420-1519.jar
-
-17405, io.micrometer:micrometer-core:jar:1.0.6:compile
-17430, io.micrometer:micrometer-registry-graphite:jar:1.0.6:compile
-17409, io.micrometer:micrometer-spring-legacy:jar:1.0.6:compile
-13847, io.netty:netty-codec-dns:jar:4.1.9.Final:compile
-13847, io.netty:netty-codec-http2:jar:4.1.9.Final:compile
-13847, io.netty:netty-codec-mqtt:jar:4.1.9.Final:compile
-13847, io.netty:netty-codec-socks:jar:4.1.9.Final:compile
-13847, io.netty:netty-handler-proxy:jar:4.1.9.Final:compile
-13847, io.netty:netty-resolver-dns:jar:4.1.9.Final:compile
-17141, io.netty:netty-tcnative-boringssl-static:jar:2.0.10.Final:compile
-16586, io.opentracing.contrib:opentracing-tracerresolver:jar:0.1.4:compile
-16576, io.opentracing.contrib:opentracing-vertx-web:jar:0.1.0:compile
-16542, io.opentracing:opentracing-api:jar:0.31.0:compile
-16543, io.opentracing:opentracing-noop:jar:0.31.0:compile
-17408, org.latencyutils:LatencyUtils:jar:2.0.3:compile
-16981, org.springframework.security:spring-security-crypto:jar:4.2.7.RELEASE:compile
-
-1456, commons-lang:commons-lang:jar:2.1:compile
-1595, commons-lang:commons-lang:jar:2.1:compile
-14860, commons-lang:commons-lang3:jar:3.0:compile
-
-14455, com.github.fge:btf:jar:1.2:compile
-17656, com.github.spullara.mustache.java:compiler:jar:0.8.17:compile
-17821, com.google.appengine:appengine-api-1.0-sdk:jar:1.9.59:compile
-17697, com.uber.jaeger:jaeger-core:jar:0.20.0:compile
-16683, io.netty:netty-all:jar:4.1.5.Final:compile
-16685, io.opentracing:opentracing-api:jar:0.30.0:compile
-16685, io.opentracing:opentracing-noop:jar:0.30.0:compile
-16686, io.opentracing:opentracing-util:jar:0.30.0:compile
-16692, io.reactivex.rxjava2:rxjava:jar:2.0.4:compile
-16691, io.reactivex:rxjava:jar:1.2.5:compile
-17701, org.apache.felix:org.apache.felix.http.api:jar:2.2.0:compile
-17701, org.apache.felix:org.apache.felix.http.base:jar:2.2.0:compile
-17701, org.apache.felix:org.apache.felix.http.bridge:jar:2.2.0:compile
-17701, org.apache.felix:org.apache.felix.http.bundle:jar:2.2.0:compile
-17701, org.apache.felix:org.apache.felix.http.jetty:jar:2.2.0:compile
-17701, org.apache.felix:org.apache.felix.http.whiteboard:jar:2.2.0:compile
-16152, org.javassist:javassist:jar:3.22.0-GA:compile
-16929, org.openjdk.jmh:jmh-core:jar:1.10.2:compile
-17705, org.reactivestreams:reactive-streams:jar:1.0.0:compile
-16868, org.simpleframework:simple-common:jar:6.0.1:compile
-16869, org.simpleframework:simple-http:jar:6.0.1:compile
-16870, org.simpleframework:simple-transport:jar:6.0.1:compile
-17822, org.swinglabs:swing-layout:jar:1.0.3:compile
-
-technology.aspectj, aspectj:aspectjrt:*:*:*
-16124, commons-digester:commons-digester:jar:2.0:compile
-16118, org.apache.cactus:cactus.core.framework.uberjar.javaEE.15:jar:1.8.1:compile
-12814, org.mortbay.jetty:jetty-annotations:jar:6.1.26:compile
-12814, org.mortbay.jetty:jetty-plus:jar:6.1.26:compile
-12814, org.mortbay.jetty:servlet-api:jar:2.5-20081211:compile
-16417, xalan:serializer:jar:2.7.2:compile
-9587, xalan:xalan:jar:2.7.2:compile
-5481, geronimo-spec:geronimo-spec-jta:jar:1.0.1B-rc4:compile
-17543, net.sourceforge.cssparser:cssparser:jar:0.9.25:compile
-4727, org.apache.ant:ant:jar:1.8.2:compile
-3372, org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.1.1:compile
-unknown, com.squareup:javapoet:jar:1.9.0:compile
-unknown, net.sourceforge.htmlunit:htmlunit-core-js:jar:2.23:compile
-unknown, net.sourceforge.htmlunit:htmlunit:jar:2.24:compile
-unknown, net.sourceforge.htmlunit:neko-htmlunit:jar:2.24:compile
-
-17585, com.unboundid:unboundid-ldapsdk:jar:4.0:compile
-18125, org.jsoup:jsoup:jar:1.11.2:compile
-
-16295, com.chuusai:shapeless_2.12:jar:2.3.2:compile
-16300, com.github.ben-manes.caffeine:caffeine:jar:2.6.2:compile
-16302, com.github.jnr:jnr-constants:jar:0.9.9:compile
-16225, com.github.jnr:jnr-ffi:jar:2.1.7:compile
-11328, com.github.nscala-time:nscala-time_2.12:jar:2.14.0:compile
-16312, com.github.scullxbones:akka-persistence-mongo-casbah_2.12:jar:2.0.9:compile
-16313, com.github.scullxbones:akka-persistence-mongo-common_2.12:jar:2.0.9:compile
-17357, com.lightbend.akka:akka-stream-alpakka-mqtt_2.12:jar:0.20:compile
-16727, com.lightbend.akka.discovery:akka-discovery_2.12:jar:0.14.0:compile
-16727, com.lightbend.akka.discovery:akka-discovery-dns_2.12:jar:0.14.0:compile
-16727, com.lightbend.akka.discovery:akka-discovery-kubernetes-api_2.12:jar:0.14.0:compile
-16727, com.lightbend.akka.management:akka-management_2.12:jar:0.14.0:compile
-16727, com.lightbend.akka.management:akka-management-cluster-bootstrap_2.12:jar:0.14.0:compile
-16333, com.newmotion:akka-rabbitmq_2.12:jar:5.0.0:compile
-17744, com.rabbitmq:amqp-client:jar:5.4.2:compile
-16726, com.typesafe.akka:akka-actor_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-cluster_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-cluster-sharding_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-cluster-tools_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-distributed-data_2.12:jar:2.5.13:compile
-16551, com.typesafe.akka:akka-http_2.12:jar:10.1.1:compile
-16551, com.typesafe.akka:akka-http-core_2.12:jar:10.1.1:compile
-16551, com.typesafe.akka:akka-http-spray-json_2.12:jar:10.1.1:compile
-16551, com.typesafe.akka:akka-parsing_2.12:jar:10.1.1:compile
-16726, com.typesafe.akka:akka-persistence_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-persistence-query_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-protobuf_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-remote_2.12:jar:2.5.13:compile
-16726, com.typesafe.akka:akka-slf4j_2.12:jar:2.5.13:compile
-14400, com.typesafe:config:jar:1.3.1:compile
-16314, com.typesafe:ssl-config-core_2.12:jar:0.2.3:compile
-16553, io.aeron:aeron-client:jar:1.9.3:compile
-16552, io.aeron:aeron-driver:jar:1.9.3:compile
-14465, io.dropwizard.metrics:metrics-core:jar:3.1.2:compile
-16317, io.dropwizard.metrics:metrics-healthchecks:jar:3.1.2:compile
-17097, io.jsonwebtoken:jjwt-api:jar:0.10.1:compile
-17097, io.jsonwebtoken:jjwt-impl:jar:0.10.1:compile
-16740, io.kamon:kamon-core_2.12:jar:1.1.2:compile
-16742, io.kamon:kamon-prometheus_2.12:jar:1.1.1:compile
-16741, io.kamon:kamon-system-metrics_2.12:jar:1.0.0:compile
-16559, io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.24.Final:compile
-16559, io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.24.Final:compile
-16949, io.prometheus:simpleclient_common:jar:0.4.0:compile
-16950, io.prometheus:simpleclient_dropwizard:jar:0.4.0:compile
-16948, io.prometheus:simpleclient:jar:0.4.0:compile
-16555, io.spray:spray-json_2.12:jar:1.3.3:compile
-14491, nl.grons:metrics-scala_2.12:jar:3.5.5_a2.4:compile
-16554, org.agrona:agrona:jar:0.9.17:compile
-17533, org.apache.qpid:proton-j:jar:0.29.0:compile
-17532, org.apache.qpid:qpid-jms-client:jar:0.36.0:compile
-14472, org.joda:joda-convert:jar:1.2:compile
-16336, org.lmdbjava:lmdbjava:jar:0.6.0:compile
-16349, org.mongodb:bson:jar:3.6.3:compile
-14495, org.mongodb:casbah_2.12:pom:3.1.1:compile
-14495, org.mongodb:casbah-commons_2.12:jar:3.1.1:compile
-14495, org.mongodb:casbah-core_2.12:jar:3.1.1:compile
-14495, org.mongodb:casbah-gridfs_2.12:jar:3.1.1:compile
-14495, org.mongodb:casbah-query_2.12:jar:3.1.1:compile
-16349, org.mongodb:mongodb-driver-async:jar:3.6.3:compile
-16349, org.mongodb:mongodb-driver-core:jar:3.6.3:compile
-16350, org.mongodb:mongodb-driver-reactivestreams:jar:1.7.1:compile
-16349, org.mongodb:mongo-java-driver:jar:3.6.3:compile
-16320, org.mozilla:rhino:jar:1.7.10:compile
-16321, org.ow2.asm:asm-analysis:jar:5.2:compile
-16322, org.ow2.asm:asm-commons:jar:5.2:compile
-14474, org.ow2.asm:asm:jar:5.2:compile
-16323, org.ow2.asm:asm-tree:jar:5.2:compile
-16324, org.ow2.asm:asm-util:jar:5.2:compile
-16334, org.parboiled:parboiled_2.12:jar:2.1.4:compile
-16332, org.reactivestreams:reactive-streams:jar:1.0.2:compile
-14402, org.scala-lang.modules:scala-java8-compat_2.12:jar:0.8.0:compile
-16341, org.scala-lang.modules:scala-parser-combinators_2.12:jar:1.1.0:compile
-16335, org.scala-lang:scala-library:jar:2.12.6:compile
-16326, org.typelevel:macro-compat_2.12:jar:1.1.1:compile
-16728, org.webjars.npm:bytebuffer:jar:5.0.1:compile
-16729, org.webjars.npm:long:jar:3.2.0:compile
-
-17557, args4j:args4j:jar:2.33:compile
-17629, org.apache.maven:maven-artifact:jar:3.5.2:compile
-17629, org.apache.maven:maven-builder-support:jar:3.5.2:compile
-17628, org.apache.maven:maven-compat:jar:3.5.2:compile
-17629, org.apache.maven:maven-core:jar:3.5.2:compile
-17726, org.apache.maven:maven-plugin-api:jar:3.5.2:compile
-17727, org.apache.maven:maven-settings-builder:jar:3.5.2:compile
-17727, org.apache.maven:maven-settings:jar:3.5.2:compile
-17732, org.apache.maven.resolver:maven-resolver-api:jar:1.1.1:compile
-17733, org.apache.maven.resolver:maven-resolver-connector-basic:jar:1.1.1:compile
-17734, org.apache.maven.resolver:maven-resolver-impl:jar:1.1.1:compile
-17735, org.apache.maven.resolver:maven-resolver-spi:jar:1.1.1:compile
-17736, org.apache.maven.resolver:maven-resolver-transport-file:jar:1.1.1:compile
-17737, org.apache.maven.resolver:maven-resolver-util:jar:1.1.1:compile
-17620, org.apache.maven.wagon:wagon-http-lightweight:jar:3.0.0:compile
-17728, org.codehaus.plexus:plexus-archiver:jar:3.5:compile
-17729, org.codehaus.plexus:plexus-io:jar:3.0.0:compile
-17731, org.codehaus.plexus:plexus-utils:jar:3.1.0:compile
-17739, org.tukaani:xz:jar:1.8:compile
-9697, com.google.inject:guice:jar:no_aop:4.0:compile
-15560, org.apache.ant:ant:jar:1.10.2:compile
-15560, org.apache.ant:ant-junit:jar:1.10.2:compile
-15560, org.apache.ant:ant-launcher:jar:1.10.2:compile
-16474, org.apache.maven:maven-model-builder:jar:3.5.3:compile
-16473, org.apache.maven:maven-model:jar:3.5.3:compile
-16476, org.apache.maven:maven-repository-metadata:jar:3.5.3:compile
-16481, org.apache.maven:maven-resolver-provider:jar:3.5.3:compile
-16487, org.apache.maven.resolver:maven-resolver-transport-wagon:jar:1.1.1:compile
-17741, org.apache.maven.shared:file-management:jar:3.0.0:compile
-11282, org.apache.maven.wagon:wagon-provider-api:jar:2.10:compile
-16465, org.codehaus.plexus:plexus-component-annotations:jar:1.7.1:compile
-16490, org.codehaus.plexus:plexus-interpolation:jar:1.24:compile
-16491, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
-10947, xml-apis:xml-apis:jar:1.0.b2:compile
-unknown, com.google.code.findbugs:jsr305:jar:2.0.1:compile
-unknown, com.sun.codemodel:codemodel:jar:2.6:compile
-unknown, javax.annotation:jsr250-api:jar:1.0:compile
-unknown, org.apache.commons:commons-compress:jar:1.14:compile
-unknown, org.apache.maven.shared:maven-shared-io:jar:3.0.0:compile
-unknown, org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile
-unknown, org.apache.maven.shared:maven-shared-utils:jar:3.1.0:compile
-unknown, org.apache.maven.wagon:wagon-http-shared:jar:3.0.0:compile
-unknown, org.jsoup:jsoup:jar:1.11.2:compile
-unknown, org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
-unknown, org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
-unknown, org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
-
-15537, (& (= Bundle-Name "JLine") (compat Bundle-Version (v "2.14.5")))
-
-13666, jcommander-1.60.jar
-
-17496, xalan:serializer:jar:2.7.2:compile
-17496, xalan:xalan:jar:2.7.2:compile
-1448, xml-apis:xml-apis:jar:1.3.04:compile
-107, xml-apis:xml-apis:jar:1.3.03:compile
-15279, xml-apis:xml-apis:jar:1.4.01:compile
-
-unknown, antlr:antlr:jar:2.7.7:compile
-unknown, bouncycastle:bcprov-jdk15:jar:136:compile
-unknown, com.beust:jcommander:jar:1.64:compile
-unknown, net.jxta:jxta-jxse:jar:2.5:compile
-unknown, org.apache.felix:org.apache.felix.bundlerepository:jar:2.0.10:compile
-unknown, org.apache.felix:org.apache.felix.eventadmin:jar:1.4.10:compile
-unknown, org.apache.felix:org.apache.felix.fileinstall:jar:3.6.4:compile
-unknown, org.apache.felix:org.apache.felix.main:jar:5.6.10:compile
-unknown, org.apache.felix:org.apache.felix.webconsole:jar:4.3.4:compile
-unknown, org.hibernate.validator:hibernate-validator-cdi:jar:6.0.10.Final:compile
-unknown, org.jboss.classfilewriter:jboss-classfilewriter:jar:1.2.1.Final:compile
-unknown, org.jboss.logging:jboss-logging-annotations:jar:2.1.0.Final:compile
-unknown, org.jboss.spec.javax.ejb:jboss-ejb-api_3.2_spec:jar:1.0.0.Final:compile
-unknown, org.jboss.spec.javax.el:jboss-el-api_3.0_spec:jar:1.0.7.Final:compile
-unknown, org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.2_spec:jar:1.0.0.Final:compile
-unknown, org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.0.0.Final:compile
-unknown, org.testng:testng:jar:6.11:compile
-
-17827, com.fasterxml.woodstox:woodstox-core:jar:5.1.0:compile
-9697, com.google.inject:guice:jar:no_aop:4.0:compile
-ee4j.javamail, jakarta.mail:*:*:*
-ee4j.jca, jakarta.resource:*:*:*
-ee4j.jta, jakarta.transaction:*:*:*
-ee4j.jaf, javax.activation:*:*:*
-291, jetty:jetty:jar:4.2.25:compile
-15918, org.apache.felix:org.apache.felix.gogo.runtime:jar:1.0.10:compile
-14024, org.apache.felix:org.apache.felix.gogo.shell:jar:1.0.0:compile
-12694, org.apache.felix:org.apache.felix.webconsole:jar:4.2.16:compile
-11395, org.apache.maven:maven-artifact:jar:3.3.9:compile
-17824, org.apache.santuario:xmlsec:jar:1.5.8:compile
-16913, org.codehaus.jettison:jettison:jar:1.3.7:compile
-17826, org.codehaus.woodstox:stax2-api:jar:4.1:compile
-ee4j.yasson, org.eclipse:yasson:*:*
-16926, org.hibernate:hibernate-validator:jar:5.1.3.Final:compile
-14998, org.hibernate:hibernate-validator:jar:5.3.5.Final:compile
-17142, org.hibernate:hibernate-validator:jar:6.0.10.Final:compile
-17626, org.jboss.weld.module:weld-ejb:jar:3.0.0.Final:compile
-17626, org.jboss.weld.module:weld-jsf:jar:3.0.0.Final:compile
-17626, org.jboss.weld.module:weld-jta:jar:3.0.0.Final:compile
-17626, org.jboss.weld.module:weld-web:jar:3.0.0.Final:compile
-17626, org.jboss.weld.probe:weld-probe-core:jar:3.0.0.Final:compile
-17626, org.jboss.weld.se:weld-se-shaded:jar:3.0.0.Final:compile
-17626, org.jboss.weld:weld-api:jar:3.0.Final:compile
-17626, org.jboss.weld:weld-core-impl:jar:3.0.0.Final:compile
-17626, org.jboss.weld:weld-osgi-bundle:jar:3.0.0.Final:compile
-17626, org.jboss.weld:weld-spi:jar:3.0.Final:compile
-9654, org.osgi:org.osgi.core:jar:6.0.0:compile
-13145, org.yaml:snakeyaml:jar:1.17:compile
-1448, xml-apis:xml-apis:jar:1.3.04:compile
-
-unknown, com.meterware.simplestub:simplestub:jar:1.2.12:test
-16052, org.ow2.asm:asm-analysis:jar:6.1.1:test
-16052, org.ow2.asm:asm-commons:jar:6.1.1:test
-16052, org.ow2.asm:asm:jar:6.1.1:test
-16052, org.ow2.asm:asm-tree:jar:6.1.1:test
-
-4968, commons-beanutils:commons-beanutils:jar:1.8.0:compile
-18288, com.squareup:javapoet:jar:1.9.0:compile
-4727, org.apache.ant:ant:jar:1.8.2:compile
-14873, org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0.1:compile
-11347, org.mortbay.jetty:servlet-api:jar:2.5-20081211:compile
-
-unknown, net.sourceforge.htmlunit:htmlunit-core-js:jar:2.23:compile
-unknown, net.sourceforge.htmlunit:htmlunit:jar:2.24:compile
-unknown, net.sourceforge.htmlunit:neko-htmlunit:jar:2.24:compile
-unknown, org.mortbay.jetty:jetty-annotations:jar:6.1.26:compile
-unknown, org.mortbay.jetty:jetty-plus:jar:6.1.26:compile
-
-12750, org.glassfish.external:ant:jar:1.10.1:compile
-11702, org.glassfish.external:asm-all:jar:6.0_ALPHA:compile
-17037, org.glassfish.external:management-api:jar:3.2.1-b003:compile
-17510, org.glassfish.external:jsch:jar:0.1.54:compile
-
-org.glassfish.external:antlr:jar:2.7.7:compile
-org.glassfish.external:dbschema:jar:6.6:compile
-org.glassfish.external:derby:zip:10.13.1.1:compile
-
-10313, com.sun.xml.fastinfoset:FastInfoset:jar:1.2.12:compile
-3059, com.sun.xml.messaging.saaj:saaj-impl:jar:1.3.2:compile
-15719, com.sun.xml.ws:jaxws-rt:jar:2.2.10:compile
-11296, javax.jws:jsr181-api:jar:1.0-MR1:compile
-
-17827, com.fasterxml.woodstox:woodstox-core:jar:5.1.0:compile
-17823, org.codehaus.woodstox:stax2-api:jar:4.1:compile
-
-17730, ant:ant:jar:1.6:compile
-4649, com.google.inject:guice:jar:no_aop:4.0:compile
-
-2884, commonj.sdo:commonj.sdo:jar:2.1.1.v201112051852:compile
-
-// TODO This may match things that do not belong to GlassFish. Investigate.
-//ee4j.glassfish, (& (glob "glassfish-*.jar" filename) (>= version (v "5.1.0")))
-
-ee4j.glassfish, (& (regex "org\.glassfish\.(main|hk2)" groupid) (>= version (v "5.1.0")))
-ee4j.glassfish, (& (= "org.shoal" groupid)(>= version (v "1.6.53")))
-ee4j.grizzly, (& (= "org.glassfish.grizzly" groupid)(>= version (v "2.4.4")))
-ee4j.metro, (& (= "org.glassfish.metro" groupid)(>= version (v "2.4.1")))
-ee4j.metro, (& (= "org.jvnet.mimepull" groupid)(= artifactid "mimepull")(>= version (v "1.9.11")))
-ee4j.openmq, (& (= "org.glassfish.mq" groupid)(>= version (v "5.1.3")))
-ee4j.tyrus, (& (regex "org\.glassfish\.tyrus(\.ext)?" groupid)(>= version (v "1.1.5")))
diff --git a/tests/data/ip-scans/birt.xml b/tests/data/ip-scans/birt.xml
deleted file mode 100644
index 1fa832a..0000000
--- a/tests/data/ip-scans/birt.xml
+++ /dev/null
@@ -1,20355 +0,0 @@
-<downloads>
- <project id="birt">
- <includes id="datatools.sqltools"/>
- <includes id="datatools.enablement"/>
- <includes id="datatools.modelbase"/>
- <includes id="datatools.connectivity"/>
- <includes id="eclipse.platform"/>
- <includes id="webtools.datatools"/>
- <includes id="modeling.emf.emf"/>
- <includes id="rt.equinox"/>
- <includes id="tools.gef"/>
- <includes id="rt.ecf"/>
- <includes id="rt.equinox.framework"/>
- <includes id="rt.equinox.p2"/>
- <includes id="rt.equinox.security"/>
- <includes id="eclipse.jdt"/>
- <includes id="eclipse.jdt.core"/>
- <includes id="eclipse.jdt.debug"/>
- <includes id="eclipse.jdt.ui"/>
- <includes id="webtools.jeetools"/>
- <includes id="mylyn"/>
- <includes id="mylyn.commons"/>
- <includes id="mylyn.context"/>
- <includes id="mylyn.tasks"/>
- <includes id="eclipse.pde"/>
- <includes id="eclipse.pde.ui"/>
- <includes id="webtools.common"/>
- <includes id="modeling.mdt.xsd"/>
- <includes id="tools.aspectj"/>
- <includes id="webtools.dali"/>
- <includes id="webtools.ejbtools"/>
- <includes id="webtools.releng"/>
- <includes id="webtools.sourceediting"/>
- <includes id="webtools.servertools"/>
- <includes id="webtools.webservices"/>
- <includes id="tools.tm"/>
- <bundle name="BIRTExamples.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/examples/integrating/DynamicParameters/DynParmsBin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/examples/integrating/DynamicParameters/DynParmsBin.zip"/>
- </bundle>
- <bundle name="org.apache.commons.codec_1.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="213" project="birt"/>
- </bundle>
- <bundle name="org.apache.derby.core_10.3.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <cq id="1883" project="birt"/>
- </bundle>
- <bundle name="org.mozilla.rhino_1.6.7.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <cq id="1864" project="birt"/>
- </bundle>
- <bundle name="org.w3c.sac_1.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <cq id="209" project="birt"/>
- </bundle>
- <bundle name="com.lowagie.itext_1.5.4.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <cq id="2114" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.transcoder_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="javax.xml.rpc_1.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <cq id="3353" project="birt"/>
- </bundle>
- <bundle name="org.apache.xml.resolver_1.2.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.xml.serializer_2.7.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.commons.discovery_0.2.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <cq id="3355" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.dom_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="javax.xml_1.3.4.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3352" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.util.gui_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.css_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.swing_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="209" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.svggen_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="javax.xml.soap_1.2.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <cq id="3354" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.util_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.parser_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.w3c.dom.svg_1.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.w3c.css.sac_1.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.xerces_2.9.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3348" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.bridge_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.axis_1.4.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <cq id="2362" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.pdf_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="javax.wsdl_1.5.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3339" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.extension_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="209" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.xml_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.ext.awt_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik.dom.svg_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.w3c.dom.smil_1.0.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.3-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="209" project="birt"/>
- </bundle>
- <bundle name="com.lowagie.itext.source_1.5.4.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <cq id="2114" project="birt"/>
- </bundle>
- <bundle name="org.mozilla.rhino_1.7.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <cq id="3176" project="birt"/>
- </bundle>
- <bundle name="org.w3c.sac.source_1.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <cq id="209" project="birt"/>
- </bundle>
- <bundle name="org.mozilla.rhino.source_1.7.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <cq id="3176" project="birt"/>
- </bundle>
- <bundle name="org.apache.derby.core.source_10.3.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <cq id="1883" project="birt"/>
- </bundle>
- <bundle name="org.apache.derby.core.source_10.5.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins"/>
- <cq id="3628" project="birt"/>
- </bundle>
- <bundle name="org.apache.derby.core_10.5.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.5-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-updatesite-2_5_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <cq id="3628" project="birt"/>
- </bundle>
- <bundle name="org.mozilla.javascript_1.7.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4290" project="birt"/>
- </bundle>
- <bundle name="org.apache.commons.codec.source_1.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <cq id="213" project="birt"/>
- </bundle>
- <bundle name="org.mozilla.javascript.source_1.7.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins"/>
- <cq id="4290" project="birt"/>
- </bundle>
- <bundle name="com.lowagie.text_2.1.7.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/2.6-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/4.0-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/3.7-interim/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-updatesite-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-updatesite-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-updatesite-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-updatesite-2_6_0.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-updatesite-4.0.0M4.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-updatesite-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-updatesite-4.0.0M3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-updatesite-2_6_1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-updatesite-3.7RC3.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-updatesite-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-updatesite-3_7_0-N20110602.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-updatesite-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-updatesite-3.7RC2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-updatesite-3.7M6.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-updatesite-3.7.0M7.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-updatesite-3_7_0-S20110609.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-updatesite-2_6_2.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-updatesite-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-updatesite-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-updatesite-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-updatesite-3.7RC1.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-updatesite-3_7_0-S20110615.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-updatesite-4.0.0M5.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-updatesite-3_7_0-S20110608.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-updatesite-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3475" project="birt"/>
- </bundle>
- <bundle name="org.apache.batik_1.6.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <cq id="3343" project="birt"/>
- </bundle>
- <bundle name="org.apache.derby.core_10.1.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <cq id="228" project="birt"/>
- </bundle>
- <bundle name="org.apache.xerces_2.8.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <cq id="253" project="birt"/>
- </bundle>
- <bundle name="org.apache.xerces.feature_2.8.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/features"/>
- <cq id="253" project="birt"/>
- </bundle>
- <bundle name="org.apache.xml.resolver_1.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/update-site/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <cq id="4689" project="birt"/>
- </bundle>
- <bundle name="com.ibm.icu_4.4.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4795" project="eclipse.platform"/>
- </bundle>
- <bundle name="derby.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-non-osgi-3_7_0-N20110519.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-non-osgi-3_7_0-N20110511.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-non-osgi-3_7_0-N20110510.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.apache.derby.core_10.1.2.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.derby.core_10.1.2.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.apache.derby.core_10.1.2.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.apache.derby.core_10.1.2.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/org.apache.derby.core_10.1.2.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.1.2.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-non-osgi-3_7_0-N20110513.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.apache.derby.core_10.3.1.4"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.derby.core_10.3.1.4"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/org.apache.derby.core_10.3.1.4"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.3.1.4"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.apache.derby.core_10.3.1.4"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.apache.derby.core_10.3.1.4"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-non-osgi-3_7_0-N20110512.zip"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.apache.derby.core"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.derby.core_10.1.2.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.derby.core_10.3.1.4"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.derby.core_10.5.1.1_v20110526-0630"/>
- </bundle>
- <bundle name="jaxrpc.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v200706111329/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v200706111329/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v200806030420/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/javax.xml.rpc_1.1.0.v201005080400/lib"/>
- </bundle>
- <bundle name="saaj.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v200706111329/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v200706111329/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v200806030421/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/javax.xml.soap_1.2.0.v201005080501/lib"/>
- </bundle>
- <bundle name="axis-ant.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200706191647/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v200706191647/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- </bundle>
- <bundle name="axis.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200706191647/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v200706191647/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v200807230600/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v201005080400/lib"/>
- </bundle>
- <bundle name="commons-discovery-0.2.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200706111329/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartRuntime/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/ChartSDK/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200905122109/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200706111329/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v200806030120/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.commons.discovery_0.2.0.v201004190315/lib"/>
- </bundle>
- <bundle name="oda-jdbc.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.eclipse.birt.report.data.oda.jdbc_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.2.2.r22x_v20071206"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.2.2.r22x_v20071206"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.2.2.r22x_v20071206"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.data.oda.jdbc_2.2.2.r22x_v20071206"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_2.2.2.r22x_v20071206"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_2.2.2.r22x_v20071206"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.3.2.r232_v20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.3.2.r232_v20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_2.3.2.r232_v20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_2.3.2.r232_v20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.eclipse.birt.report.data.oda.jdbc_2.3.2.r232_v20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.3.2.r232_v20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110516"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110516"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110516"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110516"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110516"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110516"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.2.2.r22x_v20071206"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_2.3.2.r232_v20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110516"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="BirtSample.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-database-3_7_0-N20110519.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-database-3_7_0-N20110511.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-database-3_7_0-S20110607.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-database-3_7_0-N20110525.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-database-2_6_0.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-database-4.0.0M4.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-database-3_7_0-N20110603.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-database-3_7_0-N20110510.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-database-2_5_2.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-database-4.0.0M3.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-database-2_6_1.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-database-2_2_2.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-database-3.7RC3.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-database-3_7_0-N20110520.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-database-3_7_0-N20110602.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-database-3_7_0-N20110513.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-database-3.7RC2.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-database-3.7M6.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-database-3.7.0M7.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-database-3_7_0-S20110609.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-database-2_6_2.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-database-3_7_0-N20110527.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-database-2_3_2_2.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-database-3_7_0-N20110523.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-database-3_7_0-N20110512.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-database-3.7RC1.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-database-3_7_0-S20110615.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-database-4.0.0M5.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-database-3_7_0-S20110608.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-database-3_7_0-N20110526.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-database-3_7_0-N20110526.zip/ClassicModels/derby/bin"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.data.oda.sampledb/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630/db"/>
- </bundle>
- <bundle name="sampledb.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.data.oda.sampledb_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="viewservlets.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-runtime-3_7_0-N20110520.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-runtime-3.7RC2.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-runtime-3_7_0-N20110523.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630/birt/WEB-INF/lib"/>
- </bundle>
- <bundle name="viewer.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.0.v20100605"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.5.2.v20091210"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.1.v20100913"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110527"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.6.2.r262_v20110214"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.3.2.r232_20090212"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="flute.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110519-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110519-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20110519-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20110519-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110519-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-framework-3_7_0-N20110519.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110519-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110511-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110511-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20110511-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20110511-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110511-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-framework-3_7_0-N20110511.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110511-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-3_7_0-S20110607.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-framework-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110525-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110525-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110525-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-framework-3_7_0-N20110525.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110525-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-sdk-4.0.0M4.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-framework-4.0.0M4.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-framework-3_7_0-N20110603.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110510-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110510-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20110510-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20110510-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110510-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-framework-3_7_0-N20110510.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110510-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-sdk-4.0.0M3.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-framework-4.0.0M3.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-sdk-2_6_1.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-framework-2_6_1.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-3.7RC3.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-framework-sdk-3.7RC3.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-framework-3_7_0-N20110520.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110602-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110602-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110602-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-framework-3_7_0-N20110602.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110602-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110513-0958/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110513-0958/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20110513-0958/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20110513-0958/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110513-0958/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-framework-3_7_0-N20110513.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110513-0958/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-3.7RC2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-framework-sdk-3.7RC2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-sdk-3.7M6.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-framework-3.7M6.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-sdk-3.7.0M7.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-framework-3.7.0M7.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-3_7_0-S20110609.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-framework-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-sdk-2_6_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-framework-2_6_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-framework-3_7_0-N20110527.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110523-1045/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110523-1045/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110523-1045/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-framework-3_7_0-N20110523.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110523-1045/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110512-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110512-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20110512-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20110512-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110512-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-framework-3_7_0-N20110512.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110512-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-3.7RC1.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-framework-sdk-3.7RC1.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-3_7_0-S20110615.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-framework-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-sdk-4.0.0M5.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-framework-4.0.0M5.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-3_7_0-S20110608.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-framework-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-framework-3_7_0-N20110526.zip/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.w3c.sac/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110519-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110511-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110525-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110510-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110602-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110513-0958/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20100915/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20070710/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110523-1045/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110512-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20101011/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.w3c.sac_1.3.0.v20110526-0630/lib"/>
- </bundle>
- <bundle name="compositeContent-1383075166.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="compositeContent1889494481.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="compositeContent834807920.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1010056647.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1245079095.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1460080058.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1567788005.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1727186807.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1817587157.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-338013338.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-432033223.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1115163420.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1121744309.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1233699359.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1528784176.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1618752537.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1636966692.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1726612855.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1746539676.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content272092407.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content80006206.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="com.jcraft.jsch_0.1.41.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3193" project="eclipse.platform"/>
- </bundle>
- <bundle name="javax.activation_1.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="2252" project="mylyn.commons"/>
- <cq id="2252" project="mylyn.commons"/>
- <cq id="1461" project="webtools.webservices"/>
- </bundle>
- <bundle name="javax.servlet.jsp_2.0.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="235" project="rt.equinox"/>
- <cq id="235" project="rt.equinox"/>
- <cq id="235" project="rt.equinox"/>
- <cq id="235" project="rt.equinox"/>
- </bundle>
- <bundle name="javax.servlet_2.5.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="1961" project="rt.equinox"/>
- <cq id="1961" project="rt.equinox"/>
- <cq id="1961" project="rt.equinox"/>
- <cq id="1961" project="rt.equinox"/>
- <cq id="2905" project="mylyn.commons"/>
- <cq id="2905" project="mylyn.commons"/>
- </bundle>
- <bundle name="javax.xml.bind_2.2.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4124" project="mylyn.builds"/>
- </bundle>
- <bundle name="javax.xml.stream_1.0.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4218" project="mylyn.builds"/>
- <cq id="5076" project="mylyn.commons"/>
- <cq id="3003" project="webtools.webservices"/>
- </bundle>
- <bundle name="net.sourceforge.lpg.lpgjavaruntime_1.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="2343" project="datatools.sqltools"/>
- </bundle>
- <bundle name="ant-bootstrap.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/etc"/>
- </bundle>
- <bundle name="ant-antlr.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-apache-bcel.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-apache-bsf.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-apache-log4j.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-apache-oro.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-apache-regexp.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-apache-resolver.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-apache-xalan2.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-commons-logging.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-commons-net.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-jai.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-javamail.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-jdepend.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-jmf.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-jsch.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-junit.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-junit4.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-launcher.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-netrexx.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-swing.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant-testutil.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="ant.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110117-1200/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.apache.ant_1.8.2.v20110505-1300/lib"/>
- </bundle>
- <bundle name="org.apache.commons.el_1.0.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="217" project="rt.equinox"/>
- <cq id="217" project="rt.equinox"/>
- <cq id="217" project="rt.equinox"/>
- <cq id="217" project="rt.equinox"/>
- </bundle>
- <bundle name="org.apache.commons.httpclient_3.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3310" project="rt.ecf"/>
- <cq id="1765" project="mylyn.commons"/>
- <cq id="1765" project="mylyn.commons"/>
- </bundle>
- <bundle name="org.apache.commons.lang_2.4.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4983" project="mylyn.commons"/>
- <cq id="4983" project="mylyn.commons"/>
- </bundle>
- <bundle name="org.apache.commons.logging_1.0.4.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-charts-3_7_0-N20110519.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-charts-3_7_0-N20110511.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-charts-3_7_0-S20110607.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-charts-3_7_0-N20110525.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-charts-3_7_0-N20110603.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-charts-3_7_0-N20110510.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-charts-3.7RC3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-charts-3_7_0-N20110520.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-charts-3_7_0-N20110602.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-charts-3_7_0-N20110513.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-charts-3.7RC2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-charts-3.7M6.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-charts-3.7.0M7.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-charts-3_7_0-S20110609.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-charts-3_7_0-N20110527.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-charts-3_7_0-N20110523.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-charts-3_7_0-N20110512.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-charts-3.7RC1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-charts-3_7_0-S20110615.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-charts-3_7_0-S20110608.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-charts-3_7_0-N20110526.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="219" project="birt"/>
- </bundle>
- <bundle name="org.apache.jasper_5.5.17.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="246" project="rt.equinox"/>
- <cq id="246" project="rt.equinox"/>
- <cq id="246" project="rt.equinox"/>
- <cq id="246" project="rt.equinox"/>
- </bundle>
- <bundle name="org.apache.lucene.analysis_2.9.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4637" project="eclipse.platform"/>
- </bundle>
- <bundle name="org.apache.lucene.core_2.9.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4638" project="eclipse.platform"/>
- </bundle>
- <bundle name="org.apache.lucene_1.9.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4815" project="datatools.sqltools"/>
- <cq id="243" project="eclipse.platform"/>
- </bundle>
- <bundle name="org.apache.lucene_2.9.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="4638" project="eclipse.platform"/>
- </bundle>
- <bundle name="org.apache.ws.commons.util_1.0.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="1569" project="rt.equinox"/>
- <cq id="4548" project="rt.ecf"/>
- <cq id="1569" project="rt.equinox"/>
- <cq id="1569" project="rt.equinox"/>
- <cq id="1569" project="rt.equinox"/>
- <cq id="1568" project="mylyn.commons"/>
- <cq id="1568" project="mylyn.commons"/>
- </bundle>
- <bundle name="org.apache.xmlrpc_3.0.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="256" project="rt.equinox"/>
- <cq id="4549" project="rt.ecf"/>
- <cq id="256" project="rt.equinox"/>
- <cq id="256" project="rt.equinox"/>
- <cq id="256" project="rt.equinox"/>
- <cq id="1567" project="mylyn.commons"/>
- <cq id="1567" project="mylyn.commons"/>
- </bundle>
- <bundle name="runtime_registry_compatibility.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20090429-1800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20090429-1800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20090429-1800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20090429-1800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.100.v20070316"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.100.v20070316"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.100.v20070316"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.100.v20070316"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20090429-1800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.100.v20070316"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.200.v20080610"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20110420"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.100.v20101108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.0.v20110505"/>
- </bundle>
- <bundle name="jdi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.0.v20100526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20101129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.5.0.v20090526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.100.v20100805"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.3.1.v20070719_r331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110207"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.4.1.v20081216_r342"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110124"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.0.v20100526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20101129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.5.0.v20090526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.100.v20100805"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.3.1.v20070719_r331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110207"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.4.1.v20081216_r342"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110124"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- </bundle>
- <bundle name="jdimodel.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.0.v20100526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20101129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.5.0.v20090526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.100.v20100805"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.3.1.v20070719_r331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110207"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jdt.debug_3.4.1.v20081216_r342"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110124"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.0.v20100526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20101129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.5.0.v20090526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.100.v20100805"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.3.1.v20070719_r331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110207"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.4.1.v20081216_r342"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110124"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.jdt.debug_3.7.0.v20110509"/>
- </bundle>
- <bundle name="pdebuild-ant.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.pde.build_3.6.0.v20100603/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101122/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.pde.build_3.5.2.R35x_20100114/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101022/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.pde.build_3.3.2.v20071019/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110310/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.pde.build_3.6.2.R36x_20110203/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.pde.build_3.4.1.R34x_v20081217/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110121-1730/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.0.v20100603/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101122/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.5.2.R35x_20100114/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101022/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.3.2.v20071019/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110310/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.2.R36x_20110203/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.4.1.R34x_v20081217/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110121-1730/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320/lib"/>
- </bundle>
- <bundle name="pdebuild.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.pde.build_3.6.0.v20100603"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101122"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.pde.build_3.5.2.R35x_20100114"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101022"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.pde.build_3.3.2.v20071019"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.pde.build_3.6.2.R36x_20110203"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.pde.build_3.4.1.R34x_v20081217"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110121-1730"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.0.v20100603"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101122"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.5.2.R35x_20100114"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20101022"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.3.2.v20071019"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.2.R36x_20110203"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.4.1.R34x_v20081217"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110418"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.6.100.v20110121-1730"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.pde.build_3.7.0.v20110512-1320"/>
- </bundle>
- <bundle name="platform.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201106030909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.platform_3.6.0.v201006080911"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201012081300"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105261708"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.platform_3.3.202.v201002111343"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201010281441"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.platform_3.6.1.v201009090800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.platform_3.3.3.r33x_r20080129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105261708"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105261708"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201103101119"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201106030909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.platform_3.6.2.v201102101200"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.platform_3.3.101.v200902111700"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201106131736"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201101272034"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201106030909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201106030909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.platform_3.6.0.v201006080911"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201012081300"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105261708"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.platform_3.3.202.v201002111343"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201010281441"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.platform_3.6.1.v201009090800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.platform_3.3.3.r33x_r20080129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105261708"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105261708"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201103101119"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201106030909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.platform_3.6.2.v201102101200"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.platform_3.3.101.v200902111700"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201104280848"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105122000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201106131736"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201101272034"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201106030909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.platform_3.7.0.v201105191138"/>
- </bundle>
- <bundle name="universal.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.400.v20100517"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.300.v20090526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.402.r36_v20100702"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.100.v20070530A"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.402.r36_v20100702"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.200.v20080508"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.400.v20100517"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.300.v20090526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.402.r36_v20100702"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.100.v20070530A"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.402.r36_v20100702"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.200.v20080508"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110425"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20101001"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.500.v20110510"/>
- </bundle>
- <bundle name="compatibility.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20090429-1800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20070319-0010"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20080509-2000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20090429-1800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20070319-0010"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20080509-2000"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20110413-1600"/>
- </bundle>
- <bundle name="org.hamcrest.core_1.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="2027" project="eclipse.jdt"/>
- <cq id="2027" project="eclipse.jdt"/>
- <cq id="2027" project="eclipse.jdt"/>
- <cq id="2027" project="eclipse.jdt"/>
- </bundle>
- <bundle name="junit.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.junit4_4.5.0.v20090824"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.junit_3.8.2.v20090203-1005"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.junit4_4.3.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.junit_3.8.2.v200706111738"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.junit4_4.3.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.junit_3.8.2.v20080602-1318"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.junit_3.8.2.v20090203-1005"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.junit4_4.5.0.v20090824"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.junit4_4.3.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.junit_3.8.2.v200706111738"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.junit4_4.3.1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.junit_3.8.2.v20080602-1318"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.junit_4.8.1.v4_8_1_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100"/>
- </bundle>
- <bundle name="org.mortbay.jetty.server_6.1.23.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3935" project="eclipse.platform"/>
- <cq id="3915" project="rt.equinox"/>
- <cq id="3915" project="rt.equinox"/>
- <cq id="3915" project="rt.equinox"/>
- <cq id="3915" project="rt.equinox"/>
- </bundle>
- <bundle name="org.mortbay.jetty.util_6.1.23.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-rcp-report-designer-3_7_0-N20110519.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-rcp-report-designer-3_7_0-S20110607.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-rcp-report-designer-3_7_0-N20110525.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-rcp-report-designer-3_7_0-N20110603.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-rcp-report-designer-3.7RC3.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-rcp-report-designer-3_7_0-N20110520.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-rcp-report-designer-3_7_0-N20110602.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-rcp-report-designer-3.7RC2.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-rcp-report-designer-3.7M6.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-rcp-report-designer-3_7_0-S20110609.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-rcp-report-designer-3_7_0-N20110527.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-rcp-report-designer-3_7_0-N20110523.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-rcp-report-designer-3.7RC1.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-rcp-report-designer-3_7_0-S20110615.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-rcp-report-designer-3_7_0-S20110608.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-rcp-report-designer-3_7_0-N20110526.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="3935" project="eclipse.platform"/>
- <cq id="3915" project="rt.equinox"/>
- <cq id="3915" project="rt.equinox"/>
- <cq id="3915" project="rt.equinox"/>
- <cq id="3915" project="rt.equinox"/>
- </bundle>
- <bundle name="org.objectweb.asm_3.3.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="5192" project="rt.ecf"/>
- <cq id="4720" project="eclipse.pde"/>
- <cq id="4720" project="eclipse.pde"/>
- </bundle>
- <bundle name="org.sat4j.core_2.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="5113" project="rt.equinox.p2"/>
- <cq id="5113" project="rt.equinox.p2"/>
- </bundle>
- <bundle name="org.sat4j.pb_2.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-3_7_0-N20110519.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-3_7_0-N20110520.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-3_7_0-N20110523.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-3.7RC1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110519.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110520.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110523.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-report-designer-all-in-one-linux-gtk-3.7RC1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/plugins"/>
- <cq id="5113" project="rt.equinox.p2"/>
- <cq id="5113" project="rt.equinox.p2"/>
- </bundle>
- <bundle name="chartengineapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="chartexamplescoreapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="chartitemapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="commons-cli-1.0.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <cq id="218" project="birt"/>
- </bundle>
- <bundle name="coreapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="crosstabcoreapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="dataadapterapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="dataaggregationapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="dataextraction.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="dteapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="emitterconfig.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="engineapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="js.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.mozilla.rhino/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartRuntime/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/ChartSDK/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-sdk-2_6_0.zip/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-framework-2_6_0.zip/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.mozilla.rhino/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartRuntime/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/ChartSDK/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.mozilla.rhino/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartRuntime/eclipse/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.mozilla.rhino/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartRuntime/eclipse/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090608/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.mozilla.rhino_1.7.1.v20090521/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.mozilla.rhino_1.6.7.r22x_v20080214/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.mozilla.rhino_1.6.7.v20080214/lib"/>
- </bundle>
- <bundle name="modelapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="modelodaapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- </bundle>
- <bundle name="odadesignapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.model.adapter.oda/lib"/>
- </bundle>
- <bundle name="scriptapi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-runtime-3_7_0-N20110519.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-runtime-3_7_0-N20110511.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-runtime-3_7_0-N20110510.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-runtime-3_7_0-N20110513.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-runtime-3.7M6.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-runtime-3.7.0M7.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-runtime-3_7_0-N20110512.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-runtime-3.7RC1.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="tests-model.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_2.5.1.v20100430"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_2.5.1.v20100127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_2.2.1.r22x_v20070924"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.tests.model_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="utility.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.tests.core_2.5.1.v20090623"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.tests.core_2.5.1.v20090623"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.tests.core_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.tests.core_2.2.0"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.tests.core_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.tests.core_2.3.2"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.tests.core_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.tests.core_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="enginetesthelper.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_2.6.0.v20100310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_2.5.2.v20100107"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_2.2.1.r22x_v20071102"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_2.3.2.r232_20090202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.testhelper_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="emitterpdf.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_2.6.0.v20100310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_2.5.2.v20091224"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_2.2.0.r22x_v20071102"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_2.3.2.r232_20090202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.pdf.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="dataenginetests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.data.tests_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.data.tests_4.0.0.v20101122"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.data.tests_2.5.2.v20100209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.data.tests_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.data.tests_2.6.1.v20100913"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.data.tests_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.data.tests_2.6.2.r262_v20110209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.data.tests_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.data.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.data.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="DtEtests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.tests.data_2.5.1.v20090629"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.tests.data_2.5.1.v20090629"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.tests.data_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.tests.data_2.2.0.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.tests.data_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.tests.data_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.tests.data_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.tests.data_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="odajdbctests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_2.6.0.v20100524"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_2.5.2.v20100205"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_4.0.0.v20101105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_2.6.1.v20100909"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_2.2.2.r22x_v20071130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_2.3.2.r232_v20090211"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="designertests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_2.6.0.v20100531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_2.5.2.v20100127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_2.6.1.v20100902"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_2.2.2.r222_v20071226"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110414"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_2.3.2.r232_20090202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.designer.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="test-engine.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_2.5.1.v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20101112"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_2.5.1.v20100129"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_2.2.0.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_2.6.2.r262_v20101112"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.tests.engine_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="modeladapterodatests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_2.6.0.v20100512"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_4.0.0.v20101202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_2.5.2.v20091225"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_2.6.1.v20100902"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_2.2.2.r22x_v20071116"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_2.6.2.r262_v20110209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_2.3.2.r232_20081009"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110407"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.model.adapter.oda.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="emitterexceltests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_2.6.0.v20100310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_2.5.2.v20091224"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.prototype.excel.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="emitterhtmltests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_2.6.0.v20100312"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_2.5.2.v20100107"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_2.2.1.r22x_v20071102"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.html.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="tests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_2.5.2.v20091023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_2.5.2.v20091023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_2.2.2.r22x_v20071023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_2.6.2.r262_v20101223"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_2.3.2.r232_20081009"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110429"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.model.testhelper_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="modeltests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_2.6.0.v20100603"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_4.0.0.v20101209"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_2.5.2.v20100127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_4.0.0.v20101021"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_2.6.1.v20100902"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_2.2.2.r22x_v20071116"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110421"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_2.6.2.r262_v20110120"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.model.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="test-chart.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_2.5.1.v20100430"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_2.5.1.v20100201"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_2.2.0.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_2.6.1.v20100813"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_2.3.2.r232_v20081113"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.tests.chart_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="charttests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.chart.tests_2.6.0.v20100304"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.chart.tests_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.chart.tests_2.5.2.v20091022"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.chart.tests_4.0.0.v20101011"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.chart.tests_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.chart.tests_2.2.2.r222_v20071023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110303"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.chart.tests_2.6.2.r262_v20101014"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.chart.tests_2.3.2.r232_20081009"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.chart.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110331"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.chart.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="coretests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.core.tests_2.6.0.v20100519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.core.tests_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.core.tests_2.5.2.v20100128"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.core.tests_4.0.0.v20101021"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.core.tests_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.core.tests_2.2.1.r22x_v20071105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.core.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.core.tests_2.3.2.r232_20090202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.core.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.core.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="coretesthelper.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_2.6.0.v20100310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_2.5.2.v20100107"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_4.0.0.v20101021"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_2.2.2.r22x_v20071105"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_2.3.2.r232_20090202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.core.testhelper_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="emitterpostscript.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_2.6.0.v20100310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_2.5.2.v20091224"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_2.2.1.r22x_v20071102"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_2.3.2.r232_20090202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.emitter.postscript.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="reportenginetests.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-tests-suite-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-tests-suite-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-tests-suite-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-tests-suite-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-tests-suite-2_6_0.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_2.6.0.v20100527"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-tests-suite-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_4.0.0.v20101213"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-tests-suite-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-tests-suite-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-tests-suite-2_5_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_2.5.2.v20100202"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-tests-suite-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_4.0.0.v20101104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-tests-suite-2_6_1.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_2.6.1.v20100812"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_2.2.1.r22x_v20080104"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-tests-suite-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-tests-suite-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-tests-suite-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-tests-suite-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-tests-suite-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110519"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-tests-suite-3.7M6.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110310"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-tests-suite-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110428"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-tests-suite-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-tests-suite-2_6_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_2.6.2.r262_v20110127"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-tests-suite-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-tests-suite-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-tests-suite-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-tests-suite-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-tests-suite-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-tests-suite-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-tests-suite-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_4.0.0.v20100130"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-tests-suite-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110602"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-tests-suite-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.report.engine.tests_3.7.0.v20110526-0630"/>
- </bundle>
- <bundle name="chartwtp.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-wtp-integration-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-wtp-integration-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-wtp-integration-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110607-1526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-wtp-integration-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-wtp-integration-sdk-2_6_0.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.6.0.v20100617-1315"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-wtp-integration-sdk-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_4.0.0.v20101213-2047"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-wtp-integration-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110603-1537"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-wtp-integration-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-wtp-integration-sdk-2_5_2.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.5.2.v20100210-1801"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-wtp-integration-sdk-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_4.0.0.v20101110-1959"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-wtp-integration-sdk-2_6_1.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.6.1.v20100917-1723"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-wtp-integration-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.2.2.r222_v20071023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.2.2.r222_v20071023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/ChartSDK/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.2.2.r222_v20071023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-wtp-integration-sdk-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110601-0203"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-wtp-integration-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110520-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-wtp-integration-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-wtp-integration-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-wtp-integration-sdk-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110523-2201"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-wtp-integration-sdk-3.7M6.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110314-1726"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-wtp-integration-sdk-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110503-1408"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-wtp-integration-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110513"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-wtp-integration-sdk-2_6_2.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.6.2.v20110215-1647"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-wtp-integration-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110527-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-wtp-integration-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.3.2.r232_v20090523"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/ChartSDK/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.3.2.r232_v20090523"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-wtp-integration-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-wtp-integration-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-wtp-integration-sdk-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110517-1525"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-wtp-integration-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110615-1818"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-wtp-integration-sdk-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_4.0.0.v20110130-1818"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-wtp-integration-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110608-1055"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-wtp-integration-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-wtp-integration-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.chart.integration.wtp.ui_2.2.2.r222_v20071023"/>
- </bundle>
- <bundle name="birtwtp.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-wtp-integration-sdk-3_7_0-N20110519.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110519-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-wtp-integration-sdk-3_7_0-N20110511.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110511-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-wtp-integration-sdk-3_7_0-S20110607.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110607-1526"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-wtp-integration-sdk-3_7_0-N20110525.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110525-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-wtp-integration-sdk-2_6_0.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.6.0.v20100617-1315"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-wtp-integration-sdk-4.0.0M4.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_4.0.0.v20101213-2047"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-wtp-integration-sdk-3_7_0-N20110603.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110603-1537"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-wtp-integration-sdk-3_7_0-N20110510.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110510-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-wtp-integration-sdk-2_5_2.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.5.1.v20100210-1801"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-wtp-integration-sdk-4.0.0M3.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_4.0.0.v20101110-1959"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-wtp-integration-sdk-2_6_1.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.6.0.v20100917-1723"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-wtp-integration-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.2.2.r22x_v20071023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.2.2.r22x_v20071023"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-wtp-integration-sdk-3.7RC3.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110601-0203"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-wtp-integration-sdk-3_7_0-N20110520.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110520-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-wtp-integration-sdk-3_7_0-N20110602.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110602-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-wtp-integration-sdk-3_7_0-N20110513.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110513-0958"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-wtp-integration-sdk-3.7RC2.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110523-2201"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-wtp-integration-sdk-3.7M6.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110314-1726"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-wtp-integration-sdk-3.7.0M7.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110503-1408"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-wtp-integration-sdk-3_7_0-S20110609.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110506"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-wtp-integration-sdk-2_6_2.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.6.2.v20110215-1647"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-wtp-integration-sdk-3_7_0-N20110527.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110527-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-wtp-integration-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.3.2.r232_v20090523"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-wtp-integration-sdk-3_7_0-N20110523.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110523-1045"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-wtp-integration-sdk-3_7_0-N20110512.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110512-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-wtp-integration-sdk-3.7RC1.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110517-1525"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-wtp-integration-sdk-3_7_0-S20110615.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110615-1818"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-wtp-integration-sdk-4.0.0M5.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_4.0.0.v20110130-1818"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-wtp-integration-sdk-3_7_0-S20110608.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110608-1055"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-wtp-integration-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-wtp-integration-sdk-3_7_0-N20110526.zip/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_3.7.0.v20110526-0630"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.integration.wtp.ui_2.2.2.r22x_v20071023"/>
- </bundle>
- <bundle name="chart-viewer.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- </bundle>
- <bundle name="servlet.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.core/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="Tidy.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110519-201105190630/birt-source-3_7_0-N20110519.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-source-3_7_0-N20110511.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-source-3_7_0-S20110607.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-runtime-3_7_0-S20110607.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-runtime-3_7_0-N20110525.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-source-3_7_0-N20110525.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-source-3_7_0-N20110603.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-runtime-3_7_0-N20110603.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-source-3_7_0-N20110510.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-source-3.7RC3.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-runtime-3.7RC3.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110520-201105200630/birt-source-3_7_0-N20110520.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-source-3_7_0-N20110602.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-runtime-3_7_0-N20110602.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-source-3_7_0-N20110513.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-source-3.7RC2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-source-3.7M6.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-source-3.7.0M7.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-source-3_7_0-S20110609.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-runtime-3_7_0-S20110609.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-runtime-3_7_0-N20110527.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-source-3_7_0-N20110527.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110523-201105231045/birt-source-3_7_0-N20110523.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-source-3_7_0-N20110512.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC1-201105171525/birt-source-3.7RC1.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-source-3_7_0-S20110615.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-runtime-3_7_0-S20110615.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-source-3_7_0-S20110608.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-runtime-3_7_0-S20110608.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-runtime-3_7_0-N20110526.zip/birt-runtime-3_7_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-source-3_7_0-N20110526.zip/plugins/org.eclipse.birt.report.engine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="content1090826426.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1548516051.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content652979456.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="org.sat4j.core_2.2.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <cq id="3911" project="rt.equinox.p2"/>
- <cq id="3911" project="rt.equinox.p2"/>
- </bundle>
- <bundle name="org.sat4j.pb_2.2.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-3_7_0-N20110511.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-3_7_0-N20110510.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-3_7_0-N20110513.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-3.7.0M7.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-3_7_0-N20110512.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110511.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110510.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110513.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-report-designer-all-in-one-linux-gtk-3.7.0M7.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110512.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <cq id="3911" project="rt.equinox.p2"/>
- <cq id="3911" project="rt.equinox.p2"/>
- </bundle>
- <bundle name="javax.wsdl_1.6.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110511-201105110630/birt-rcp-report-designer-3_7_0-N20110511.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110510-201105100630/birt-rcp-report-designer-3_7_0-N20110510.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110513-201105130958/birt-rcp-report-designer-3_7_0-N20110513.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M7-201105031408/birt-rcp-report-designer-3.7.0M7.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110512-201105120630/birt-rcp-report-designer-3_7_0-N20110512.zip/birt-rcp-report-designer-3_7_0/plugins"/>
- <cq id="4383" project="rt.ecf"/>
- <cq id="2906" project="mylyn.commons"/>
- <cq id="2906" project="mylyn.commons"/>
- <cq id="3267" project="webtools.webservices"/>
- </bundle>
- <bundle name="content-923980508.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1032169810.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1379156119.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="org.jdom_1.1.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-3_7_0-S20110607.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-3_7_0-S20110609.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-3_7_0-S20110608.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110607-201106071526/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110607.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110609-201106091010/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110609.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110608-201106081055/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110608.tar.gz/eclipse/plugins"/>
- <cq id="5193" project="rt.ecf"/>
- <cq id="4786" project="mylyn.incubator"/>
- </bundle>
- <bundle name="content-1070770316.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-395851243.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1595979426.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-3_7_0-N20110525.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-3.7RC2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-3_7_0-N20110527.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-3_7_0-N20110526.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110525-201105250630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110525.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC2-201105241634/birt-report-designer-all-in-one-linux-gtk-3.7RC2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110527-201105270630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110527.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105260630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110526-201105261350/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110526.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="com.ibm.icu_4.2.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-source-2_6_0.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-runtime-2_6_0.zip/birt-runtime-2_6_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-charts-2_6_0.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-source-4.0.0M4.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-runtime-4.0.0M4.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-charts-4.0.0M4.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-rcp-report-designer-4.0.0M4.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-source-4.0.0M3.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-runtime-4.0.0M3.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-charts-4.0.0M3.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-source-2_6_1.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-runtime-2_6_1.zip/birt-runtime-2_6_1/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-charts-2_6_1.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-source-2_6_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-runtime-2_6_2.zip/birt-runtime-2_6_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-charts-2_6_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-source-4.0.0M5.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-runtime-4.0.0M5.zip/birt-runtime-4_0_0/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-charts-4.0.0M5.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-rcp-report-designer-4.0.0M5.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <cq id="3699" project="eclipse.platform"/>
- </bundle>
- <bundle name="org.apache.lucene.analysis_1.9.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-rcp-report-designer-2_6_0.zip/birt-rcp-report-designer-2_6_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-rcp-report-designer-4.0.0M3.zip/birt-rcp-report-designer-4_0_0/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-rcp-report-designer-2_6_1.zip/birt-rcp-report-designer-2_6_1/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-rcp-report-designer-2_6_2.zip/birt-rcp-report-designer-2_6_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="4815" project="datatools.sqltools"/>
- <cq id="243" project="eclipse.platform"/>
- </bundle>
- <bundle name="compositeContent2059095946.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1115291577.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1370688884.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1799797366.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-188983354.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-25237459.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-644308570.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-882556800.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1711765872.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content2003769452.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content580299023.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="javax.xml.bind_2.0.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- </bundle>
- <bundle name="ant-nodeps.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- </bundle>
- <bundle name="ant-starteam.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- </bundle>
- <bundle name="ant-stylebook.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- </bundle>
- <bundle name="ant-trax.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- </bundle>
- <bundle name="ant-weblogic.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20090120-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200706080842/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.ant_1.7.0.v200803061910/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins/org.apache.ant_1.7.1.v20100518-1145/lib"/>
- </bundle>
- <bundle name="org.apache.commons.lang_2.3.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <cq id="1949" project="mylyn.commons"/>
- <cq id="1949" project="mylyn.commons"/>
- </bundle>
- <bundle name="org.apache.ws.commons.util_1.0.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <cq id="256" project="rt.equinox"/>
- <cq id="4549" project="rt.ecf"/>
- <cq id="256" project="rt.equinox"/>
- <cq id="256" project="rt.equinox"/>
- <cq id="256" project="rt.equinox"/>
- </bundle>
- <bundle name="org.objectweb.asm_3.2.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-2_6_0.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_0-201006171315/birt-report-designer-all-in-one-linux-gtk-2_6_0.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/plugins"/>
- <cq id="4546" project="rt.ecf"/>
- <cq id="3427" project="eclipse.pde"/>
- <cq id="3427" project="eclipse.pde"/>
- </bundle>
- <bundle name="compositeContent-1100755554.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1477510870.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1803413596.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1912311248.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-205982809.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-551063308.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-585525574.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-625916955.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-907582683.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-968037780.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1035765047.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content129073936.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1640667349.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1644080268.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1694765503.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content255869444.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content366938634.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-4.0.0M4.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M4-201012132047/birt-report-designer-all-in-one-linux-gtk-4.0.0M4.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1847365771.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content491652438.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-3_7_0-N20110603.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-3.7RC3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-3_7_0-N20110602.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110603-201106031537/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110603.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7RC3-201106010203/birt-report-designer-all-in-one-linux-gtk-3.7RC3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/N-R1-3_7_0-N20110602-201106020630/birt-report-designer-all-in-one-linux-gtk-3_7_0-N20110602.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="itext_1.5.4.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/com.lowagie.itext/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/com.lowagie.itext/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/com.lowagie.itext/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <cq id="2114" project="birt"/>
- </bundle>
- <bundle name="itextasian-1.5.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/com.lowagie.itext/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-sdk-2_5_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-framework-2_5_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/com.lowagie.itext/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/com.lowagie.itext/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins/com.lowagie.itext_1.5.4.v20090305/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/com.lowagie.itext_1.5.4.r22x_v20080226/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/com.lowagie.itext_1.5.4.v20080228/lib"/>
- <cq id="1599" project="birt"/>
- </bundle>
- <bundle name="com.ibm.icu_4.0.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-source-2_5_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-runtime-2_5_2.zip/birt-runtime-2_5_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-charts-2_5_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <cq id="3345" project="birt"/>
- </bundle>
- <bundle name="content-1398969253.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-687669275.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1224736235.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="org.mortbay.jetty.server_6.1.15.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <cq id="3052" project="eclipse.platform"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3309" project="webtools.servertools"/>
- </bundle>
- <bundle name="org.mortbay.jetty.util_6.1.15.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-rcp-report-designer-2_5_2.zip/birt-rcp-report-designer-2_5_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <cq id="3052" project="eclipse.platform"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3032" project="rt.equinox"/>
- <cq id="3309" project="webtools.servertools"/>
- </bundle>
- <bundle name="org.objectweb.asm_3.1.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="3550" project="rt.ecf"/>
- <cq id="2040" project="eclipse.pde"/>
- <cq id="2040" project="eclipse.pde"/>
- </bundle>
- <bundle name="org.sat4j.core_2.1.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <cq id="3503" project="rt.equinox"/>
- <cq id="3503" project="rt.equinox"/>
- <cq id="3503" project="rt.equinox"/>
- <cq id="3503" project="rt.equinox"/>
- </bundle>
- <bundle name="org.sat4j.pb_2.1.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-2_5_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_5_2-201002221500/birt-report-designer-all-in-one-linux-gtk-2_5_2.tar.gz/eclipse/plugins"/>
- <cq id="3503" project="rt.equinox"/>
- <cq id="3503" project="rt.equinox"/>
- <cq id="3503" project="rt.equinox"/>
- <cq id="3503" project="rt.equinox"/>
- </bundle>
- <bundle name="content-1556578926.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-715559528.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-929651764.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1535813583.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1729201.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content335532784.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content758173386.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-4.0.0M3.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M3-201011101959/birt-report-designer-all-in-one-linux-gtk-4.0.0M3.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="compositeContent1022486552.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1131709982.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1761311022.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content707722287.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content731020722.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content762040529.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content827089076.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-2_6_1.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_1-201009171723/birt-report-designer-all-in-one-linux-gtk-2_6_1.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="ui.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.2.2.r222_v20071226"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.2.2.r222_v20071226"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.2.2.r222_v20071226"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.designer.ui_2.2.2.r222_v20071226"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins/org.eclipse.birt.report.designer.ui_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-framework-sdk-2_3_2_2.zip/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.3.2.r232_v20090521"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.2.2.r222_v20071226"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.designer.ui_2.3.2.r232_v20090521"/>
- </bundle>
- <bundle name="wsdl4j-1.5.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-sdk-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-framework-2_2_2.zip/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.report.viewer/birt/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.birt.report.viewer_2.2.2.r22x_v20071213/birt/WEB-INF/lib"/>
- <cq id="3339" project="birt"/>
- </bundle>
- <bundle name="test-perf.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-tests-suite-2_2_2.zip/eclipse/plugins/org.eclipse.birt.test.performance_2.2.0.v20070531"/>
- </bundle>
- <bundle name="com.ibm.icu_3.6.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-source-2_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <cq id="1367" project="eclipse.platform"/>
- </bundle>
- <bundle name="com.jcraft.jsch_0.1.31.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <cq id="1153" project="eclipse.platform"/>
- </bundle>
- <bundle name="javax.servlet_2.4.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="236" project="rt.equinox"/>
- <cq id="236" project="rt.equinox"/>
- <cq id="236" project="rt.equinox"/>
- <cq id="236" project="rt.equinox"/>
- </bundle>
- <bundle name="bootstrap.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="catalina.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="commons-beanutils.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="commons-collections.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="commons-digester.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="commons-logging-api.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="commons-modeler.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="jakarta-regexp-1.3.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="jasper-compiler.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="jasper-runtime.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="mx4j-jmx.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="naming-common.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="naming-factory.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="naming-resources.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="servlets-common.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="servlets-default.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="servlets-invoker.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="servlets-manager.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="tomcat-coyote.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="tomcat-http11.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="tomcat-util.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="tomcatwrapper.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.tomcat_4.1.230.v20070531"/>
- </bundle>
- <bundle name="org.mortbay.jetty_5.1.11.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <cq id="289" project="rt.equinox"/>
- <cq id="1158" project="rt.ecf"/>
- <cq id="289" project="rt.equinox"/>
- <cq id="289" project="rt.equinox"/>
- <cq id="289" project="rt.equinox"/>
- </bundle>
- <bundle name="javax.wsdl_1.4.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-dtp-integration-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-rcp-report-designer-2_2_2.zip/birt-rcp-report-designer-2_2_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-runtime-2_2_2.zip/birt-runtime-2_2_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="2347" project="datatools.connectivity"/>
- <cq id="327" project="webtools.webservices"/>
- </bundle>
- <bundle name="javax.wsdl15_1.5.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- </bundle>
- <bundle name="javaxzombie.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.axis_1.4.0.v200706191647/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.axis_1.4.0.v200706191647/lib"/>
- <cq id="4386" project="rt.ecf"/>
- <cq id="1374" project="webtools.webservices"/>
- </bundle>
- <bundle name="cactus-1.7.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <cq id="212" project="webtools.servertools"/>
- </bundle>
- <bundle name="commons-httpclient-2.0.2.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <cq id="2366" project="webtools.servertools"/>
- </bundle>
- <bundle name="commons-logging-1.0.4.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <cq id="219" project="birt"/>
- </bundle>
- <bundle name="junit-3.8.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200606181221/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.apache.cactus_1.7.2.v200805140145/lib"/>
- <cq id="296" project="birt"/>
- </bundle>
- <bundle name="org.apache.log4j_1.2.13.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="3338" project="birt"/>
- </bundle>
- <bundle name="org.apache.wsil4j_1.0.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="330" project="webtools.webservices"/>
- </bundle>
- <bundle name="genericjboss.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jst.server.generic.jboss_1.5.105.v200709061325"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jst.server.generic.jboss_1.5.206.v20090115"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.generic.jboss_1.5.105.v200709061325"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.generic.jboss_1.5.206.v20090115"/>
- </bundle>
- <bundle name="genericjonas.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jst.server.generic.jonas_1.5.105.v200709061325"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jst.server.generic.jonas_1.5.205.v200805140145"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.generic.jonas_1.5.105.v200709061325"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.generic.jonas_1.5.205.v200805140145"/>
- </bundle>
- <bundle name="genericoc4j.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jst.server.generic.oc4j_1.5.105.v200709061325"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jst.server.generic.oc4j_1.5.205.v200805140145"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.generic.oc4j_1.5.105.v200709061325"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.generic.oc4j_1.5.205.v200805140145"/>
- </bundle>
- <bundle name="webspherecore.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jst.server.websphere.core_1.0.201.v20070608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jst.server.websphere.core_1.0.302.v20080620"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.websphere.core_1.0.201.v20070608"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.server.websphere.core_1.0.302.v20080620"/>
- </bundle>
- <bundle name="webserviceutils.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.205.v200711222108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.307.v200811220753"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.205.v200711222108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.307.v200811220753"/>
- </bundle>
- <bundle name="wsc.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.205.v200711222108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.307.v200811220753"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.205.v200711222108"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.jst.ws.consumption_1.0.307.v200811220753"/>
- </bundle>
- <bundle name="anttasks.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.wst.command.env_1.0.205.v200710161954/ant-lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.wst.command.env_1.0.308.v200811200248/ant-lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.wst.command.env_1.0.205.v200710161954/ant-lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.wst.command.env_1.0.308.v200811200248/ant-lib"/>
- </bundle>
- <bundle name="env.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.wst.command.env_1.0.205.v200710161954"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins/org.eclipse.wst.command.env_1.0.308.v200811200248"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.wst.command.env_1.0.205.v200710161954"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins/org.eclipse.wst.command.env_1.0.308.v200811200248"/>
- </bundle>
- <bundle name="explorer.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.wst.ws.explorer_1.0.206.v200802072125"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.wst.ws.explorer_1.0.206.v200802072125"/>
- </bundle>
- <bundle name="wsexplorer-properties.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins/org.eclipse.wst.ws.explorer_1.0.206.v200802072125"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins/org.eclipse.wst.ws.explorer_1.0.206.v200802072125"/>
- </bundle>
- <bundle name="org.uddi4j_2.0.5.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-2_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-report-designer-all-in-one-linux-gtk-2_2_2.tar.gz/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="321" project="webtools.webservices"/>
- </bundle>
- <bundle name="common.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- </bundle>
- <bundle name="common.resources.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- </bundle>
- <bundle name="ecore.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- </bundle>
- <bundle name="ecore.resources.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- </bundle>
- <bundle name="ecore.xmi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_2_2-200802271210/birt-charts-2_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- </bundle>
- <bundle name="content661012370.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-3.7M6.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-3.7.0M6-201103141726/birt-report-designer-all-in-one-linux-gtk-3.7M6.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-1711762761.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-558586556.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-768009095.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-2_6_2.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_6_2-201102191842/birt-report-designer-all-in-one-linux-gtk-2_6_2.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1674467835.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/p2/org.eclipse.equinox.p2.metadata.repository/cache"/>
- </bundle>
- <bundle name="com.ibm.icu_3.8.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-source-2_3_2_2.zip/plugins/org.eclipse.birt.chart.viewer/WebContent/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/ReportEngine/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/lib"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-runtime-2_3_2_2.zip/birt-runtime-2_3_2/WebViewerExample/WEB-INF/platform/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-charts-2_3_2_2.zip/DeploymentRuntime/ChartEngine"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="1919" project="eclipse.platform"/>
- </bundle>
- <bundle name="com.jcraft.jsch_0.1.37.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="2014" project="eclipse.platform"/>
- <cq id="2003" project="rt.ecf"/>
- </bundle>
- <bundle name="javax.mail_1.4.0.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="2252" project="mylyn.commons"/>
- <cq id="2252" project="mylyn.commons"/>
- <cq id="2059" project="webtools.webservices"/>
- </bundle>
- <bundle name="org.apache.commons.net_1.4.1.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="1319" project="rt.ecf"/>
- </bundle>
- <bundle name="org.apache.oro_2.0.8.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="3192" project="webtools.dali"/>
- <cq id="232" project="tools.tm"/>
- </bundle>
- <bundle name="org.mortbay.jetty_5.1.14.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-rcp-report-designer-2_3_2_2.zip/birt-rcp-report-designer-2_3_2/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="1962" project="rt.equinox"/>
- <cq id="1962" project="rt.equinox"/>
- <cq id="1962" project="rt.equinox"/>
- <cq id="1962" project="rt.equinox"/>
- <cq id="2296" project="webtools.servertools"/>
- </bundle>
- <bundle name="org.sat4j.core_2.0.3.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="2774" project="rt.equinox"/>
- <cq id="2774" project="rt.equinox"/>
- <cq id="2774" project="rt.equinox"/>
- <cq id="2774" project="rt.equinox"/>
- </bundle>
- <bundle name="org.sat4j.pb_2.0.3.*.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-2_3_2_2.zip/eclipse/plugins"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/R-R1-2_3_2_2-200906011507/birt-report-designer-all-in-one-linux-gtk-2_3_2_2.tar.gz/eclipse/plugins"/>
- <cq id="2774" project="rt.equinox"/>
- <cq id="2774" project="rt.equinox"/>
- <cq id="2774" project="rt.equinox"/>
- <cq id="2774" project="rt.equinox"/>
- </bundle>
- <bundle name="content-1478550302.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-36476827.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-3_7_0-S20110615.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/S-R1-3_7_0-S20110615-201106151818/birt-report-designer-all-in-one-linux-gtk-3_7_0-S20110615.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-234524225.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content-968222304.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="content1608716469.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-4.0.0M5.zip/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/drops/M-R1-4.0.0M5-201101301818/birt-report-designer-all-in-one-linux-gtk-4.0.0M5.tar.gz/eclipse/p2/org.eclipse.equinox.p2.repository/cache"/>
- </bundle>
- <bundle name="birt-oda.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="chart-engine.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="commons-codec-1.3.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="core.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="dte.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="engine.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="model.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="oda.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="odaconsumer-helper.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="sac.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/share/engine_api.zip/engine_api_2_0_1"/>
- </bundle>
- <bundle name="nl2a.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2a-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2a_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2a_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2a_0.9.0.v200606220026"/>
- </bundle>
- <bundle name="nlBidi.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpackBidi-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-rcp-report-designer-2_1_0.zip/birt-rcp-report-designer-2_1_0/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-rcp-report-designer-2_1_0.zip/birt-rcp-report-designer-2_1_0/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nlBidi_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nlBidi_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpackBidi-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.viewer.nlBidi_2.1.0.v200606220026"/>
- </bundle>
- <bundle name="nl2.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.1.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.3.1/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.5.0/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/lib/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-runtime-2_1_1.zip/birt-runtime-2_1_1/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-rcp-report-designer-2_1_1.zip/birt-rcp-report-designer-2_1_1/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-designer-all-in-one-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks2.2/NLpack2-birt-report-framework-2_1_1.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.1.v200609270227"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/WebViewerExample/WEB-INF/platform/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-rcp-report-designer-2_1_0.zip/birt-rcp-report-designer-2_1_0/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-rcp-report-designer-2_1_0.zip/birt-rcp-report-designer-2_1_0/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-rcp-report-designer-2_1_0.zip/birt-rcp-report-designer-2_1_0/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2a-birt-rcp-report-designer-2_1_0.zip/birt-rcp-report-designer-2_1_0/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl2_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl2_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack2-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl2_0.9.0.v200606220026"/>
- </bundle>
- <bundle name="nl1.jar">
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl1_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl1_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl1_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl1_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/contrib/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.data.oda.jdbc.nl1_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.birt.report.viewer.nl1_2.1.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-sdk-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-framework-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-rcp-report-designer-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-rcp-report-designer-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-rcp-report-designer-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.datatools.connectivity.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.datatools.connectivity.ui.dse.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-runtime-2_1_0.zip/birt-runtime-2_1_0/ReportEngine/plugins/org.eclipse.datatools.connectivity.ui.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.dse.nl1_0.9.0.v200606220026"/>
- <location path="/home/data/httpd/download.eclipse.org/birt/downloads/langpacks/NLpack1-birt-report-designer-all-in-one-2_1_0.zip/eclipse/plugins/org.eclipse.datatools.connectivity.ui.nl1_0.9.0.v200606220026"/>
- </bundle>
- </project>
-</downloads>
diff --git a/tests/data/ip-scans/mapping.txt b/tests/data/ip-scans/mapping.txt
deleted file mode 100644
index c6a1f53..0000000
--- a/tests/data/ip-scans/mapping.txt
+++ /dev/null
@@ -1,202 +0,0 @@
-#!/usr/bin/php
-technology.linux-distros,/home/data/httpd/download.eclipse.org/technology/linuxtools/
-modeling.emf.mwe,/home/data/httpd/download.eclipse.org/modeling/emft/mwe/
-birt,/home/data/httpd/download.eclipse.org/birt/
-datatools.incubator,/home/data/httpd/download.eclipse.org/datatools/incubator/
-datatools,/home/data/httpd/download.eclipse.org/datatools/
-dsdp,/home/data/httpd/download.eclipse.org/dsdp/
-eclipse.e4,/home/data/httpd/download.eclipse.org/eclipse/e4/
-eclipse.e4,/home/data/httpd/download.eclipse.org/e4/
-eclipse.incubator.e4,/home/data/httpd/download.eclipse.org/e4/
-eclipse.incubator.ufacekit,/home/data/httpd/download.eclipse.org/ufacekit/
-eclipse.pde.incubator,/home/data/httpd/download.eclipse.org/eclipse/pde/incubator/
-eclipse.pde,/home/data/httpd/download.eclipse.org/eclipse/pde/
-eclipse,/home/data/httpd/download.eclipse.org/eclipse/
-modeling.amalgam,/home/data/httpd/download.eclipse.org/modeling/amalgam/
-modeling.amp,/home/data/httpd/download.eclipse.org/amp/
-modeling.emf.cdo,/home/data/httpd/download.eclipse.org/modeling/emf/cdo/
-modeling.emf.compare,/home/data/httpd/download.eclipse.org/modeling/emf/compare/
-modeling.emf.emf,/home/data/httpd/download.eclipse.org/modeling/emf/emf/
-modeling.emf.query,/home/data/httpd/download.eclipse.org/modeling/emf/query/
-modeling.emf.teneo,/home/data/httpd/download.eclipse.org/modeling/emf/teneo/
-modeling.emf.transaction,/home/data/httpd/download.eclipse.org/modeling/emf/transaction/
-modeling.emf.validation,/home/data/httpd/download.eclipse.org/modeling/emf/validation/
-modeling.emft.b3,/home/data/httpd/download.eclipse.org/modeling/emft/b3/
-modeling.emft.doc2model,/home/data/httpd/download.eclipse.org/modeling/emft/doc2model/
-modeling.emft.ecoretools,/home/data/httpd/download.eclipse.org/modeling/emft/ecoretools/
-modeling.emft.edapt,/home/data/httpd/download.eclipse.org/edapt/
-modeling.emft.eef,/home/data/httpd/download.eclipse.org/modeling/emft/eef/
-modeling.emft.egf,/home/data/httpd/download.eclipse.org/egf/
-modeling.emft.emf-store,/home/data/httpd/download.eclipse.org/emf-store/
-modeling.emft.emf4net,/home/data/httpd/download.eclipse.org/modeling/emft/emf4net/
-modeling.emft.emfindex,/home/data/httpd/download.eclipse.org/modeling/emft/emfindex/
-modeling.emft.emfindex,/home/data/httpd/download.eclipse.org/emfindex/
-modeling.emft.featuremodel,/home/data/httpd/download.eclipse.org/modeling/emft/featuremodel/
-modeling.emft.henshin,/home/data/httpd/download.eclipse.org/modeling/emft/henshin/
-modeling.emft.henshin,/home/data/httpd/download.eclipse.org/henshin/
-modeling.emft.js4emf,/home/data/httpd/download.eclipse.org/js4emf/
-modeling.emft.mint,/home/data/httpd/download.eclipse.org/modeling/emft/mint/
-modeling.emft.mtf,/home/data/httpd/download.eclipse.org/modeling/emft/mtf/
-modeling.emft.mxf,/home/data/httpd/download.eclipse.org/mxf/
-modeling.emft.refactor,/home/data/httpd/download.eclipse.org/modeling/emft/refactor/
-modeling.emft.search,/home/data/httpd/download.eclipse.org/modeling/emft/search/
-modeling.emft.texo,/home/data/httpd/download.eclipse.org/modeling/emft/texo/
-modeling.emft,/home/data/httpd/download.eclipse.org/modeling/emft/
-modeling.gmp.gmf-notation,/home/data/httpd/download.eclipse.org/modeling/gmp/gmf-notation/
-modeling.gmp.gmf-notation,/home/data/httpd/download.eclipse.org/gmf-notation/
-modeling.gmp.gmf-runtime,/home/data/httpd/download.eclipse.org/modeling/gmp/gmf-runtime/
-modeling.gmp.gmf-rutnime,/home/data/httpd/download.eclipse.org/gmf-runtime/
-modeling.gmp.gmf-tooling,/home/data/httpd/download.eclipse.org/modeling/gmp/gmf-tooling/
-modeling.gmp.gmf-tooling,/home/data/httpd/download.eclipse.org/gmf-tooling/
-modeling.gmp.graphiti,/home/data/httpd/download.eclipse.org/graphiti/
-modeling.gmp,/home/data/httpd/download.eclipse.org/modeling/gmp/
-modeling.gmp,/home/data/httpd/download.eclipse.org/gmp/
-modeling.gmt.am3,/home/data/httpd/download.eclipse.org/modeling/gmt/am3/
-modeling.gmt.amw,/home/data/httpd/download.eclipse.org/modeling/gmt/amw/
-modeling.gmt.epsilon,/home/data/httpd/download.eclipse.org/modeling/gmt/epsilon/
-modeling.gmt.gems,/home/data/httpd/download.eclipse.org/modeling/gmt/gems/
-modeling.gmt.mofscript,/home/data/httpd/download.eclipse.org/modeling/gmt/mofscript/
-modeling.gmt.omcw,/home/data/httpd/download.eclipse.org/modeling/gmt/omcw/
-modeling.gmt.umlx,/home/data/httpd/download.eclipse.org/modeling/gmt/umlx/
-modeling.gmt.viatra2,/home/data/httpd/download.eclipse.org/modeling/gmt/viatra2/
-modeling.gmt,/home/data/httpd/download.eclipse.org/modeling/gmt/
-modeling.m2m.atl,/home/data/httpd/download.eclipse.org/modeling/m2m/atl/
-modeling.m2m,/home/data/httpd/download.eclipse.org/modeling/m2m/
-modeling.m2t.acceleo,/home/data/httpd/download.eclipse.org/modeling/m2t/acceleo/
-modeling.m2t.jet,/home/data/httpd/download.eclipse.org/modeling/m2t/jet/
-modeling.m2t.xpand,/home/data/httpd/download.eclipse.org/modeling/m2t/xpand/
-modeling.m2t,/home/data/httpd/download.eclipse.org/modeling/m2t/
-modeling.mdt.bpmn2,/home/data/httpd/download.eclipse.org/modeling/mdt/bpmn2/
-modeling.mdt.etrice,/home/data/httpd/download.eclipse.org/etrice/
-modeling.mdt.imm,/home/data/httpd/download.eclipse.org/modeling/mdt/imm/
-modeling.mdt.modisco,/home/data/httpd/download.eclipse.org/modeling/mdt/modisco/
-modeling.mdt.mst,/home/data/httpd/download.eclipse.org/mst/
-modeling.mdt.ocl,/home/data/httpd/download.eclipse.org/modeling/mdt/ocl/
-modeling.mdt.papyrus,/home/data/httpd/download.eclipse.org/modeling/mdt/papyrus/
-modeling.mdt.sbvr,/home/data/httpd/download.eclipse.org/modeling/mdt/sbvr/
-modeling.mdt.sphinx,/home/data/httpd/download.eclipse.org/sphinx/
-modeling.mdt.uml2,/home/data/httpd/download.eclipse.org/modeling/mdt/uml2/
-modeling.mdt.xsd,/home/data/httpd/download.eclipse.org/modeling/mdt/xsd/
-modeling.mdt,/home/data/httpd/download.eclipse.org/modeling/mdt/
-modeling.pmf,/home/data/httpd/download.eclipse.org/pmf/
-modeling.tmf.tcs,/home/data/httpd/download.eclipse.org/modeling/tmf/tcs/
-modeling.tmf.xtext,/home/data/httpd/download.eclipse.org/modeling/tmf/xtext/
-modeling.tmf,/home/data/httpd/download.eclipse.org/modeling/tmf/
-modeling,/home/data/httpd/download.eclipse.org/modeling/
-mylyn.docs.intent,/home/data/httpd/download.eclipse.org/intent/
-mylyn.docs,/home/data/httpd/download.eclipse.org/mylyn/docs/
-mylyn.incubator,/home/data/httpd/download.eclipse.org/mylyn/incubator/
-mylyn.reviews,/home/data/httpd/download.eclipse.org/reviews/
-mylyn,/home/data/httpd/download.eclipse.org/mylyn/
-rt.apricot,/home/data/httpd/download.eclipse.org/apricot/
-rt.ecf,/home/data/httpd/download.eclipse.org/rt/ecf/
-rt.eclipselink,/home/data/httpd/download.eclipse.org/rt/eclipselink/
-rt.equinox,/home/data/httpd/download.eclipse.org/rt/equinox/
-rt.equinox,/home/data/httpd/download.eclipse.org/equinox/
-rt.ercp,/home/data/httpd/download.eclipse.org/ercp/
-rt.gemini.blueprint,/home/data/httpd/download.eclipse.org/blueprint/
-rt.gemini.dbaccess,/home/data/httpd/download.eclipse.org/gemini/dbaccess/
-rt.gemini.dbaccess,/home/data/httpd/download.eclipse.org/dbaccess/
-rt.gemini.jpa,/home/data/httpd/download.eclipse.org/gemini/jpa/
-rt.gemini.jpa,/home/data/httpd/download.eclipse.org/jpa/
-rt.gemini.management,/home/data/httpd/download.eclipse.org/management/
-rt.gemini.naming,/home/data/httpd/download.eclipse.org/naming/
-rt.gemini.web,/home/data/httpd/download.eclipse.org/gemini/web/
-rt.gemini,/home/data/httpd/download.eclipse.org/gemini/
-rt.jetty,/home/data/httpd/download.eclipse.org/jetty/
-rt.rap,/home/data/httpd/download.eclipse.org/rt/rap/
-rt.riena,/home/data/httpd/download.eclipse.org/rt/riena/
-rt.smila,/home/data/httpd/download.eclipse.org/rt/smila/
-rt.virgo,/home/data/httpd/download.eclipse.org/virgo/
-rt,/home/data/httpd/download.eclipse.org/rt/
-soa.ebam,/home/data/httpd/download.eclipse.org/ebam/
-soa.ebpm,/home/data/httpd/download.eclipse.org/ebpm/
-soa.jwt,/home/data/httpd/download.eclipse.org/jwt/
-soa.mangrove,/home/data/httpd/download.eclipse.org/mangrove/
-soa.sca,/home/data/httpd/download.eclipse.org/soa/sca/
-soa.sca,/home/data/httpd/download.eclipse.org/sca/
-soa.swordfish,/home/data/httpd/download.eclipse.org/swordfish/
-soa,/home/data/httpd/download.eclipse.org/soa/
-stp.eid,/home/data/httpd/download.eclipse.org/stp/eid/
-stp.model,/home/data/httpd/download.eclipse.org/stp/model/
-stp.policy,/home/data/httpd/download.eclipse.org/stp/policy/
-stp,/home/data/httpd/download.eclipse.org/stp/
-technology.actf,/home/data/httpd/download.eclipse.org/technology/actf/
-technology.babel,/home/data/httpd/download.eclipse.org/technology/babel/
-technology.bpel,/home/data/httpd/download.eclipse.org/technology/bpel/
-technology.cdtk,/home/data/httpd/download.eclipse.org/cdtk/
-technology.cosmos,/home/data/httpd/download.eclipse.org/technology/cosmos/
-technology.dash.athena,/home/data/httpd/download.eclipse.org/athena/
-technology.dash.woolsey,/home/data/httpd/download.eclipse.org/woolsey/
-technology.dash,/home/data/httpd/download.eclipse.org/technology/dash/
-technology.dltk,/home/data/httpd/download.eclipse.org/technology/dltk/
-technology.egit,/home/data/httpd/download.eclipse.org/egit/
-technology.epf,/home/data/httpd/download.eclipse.org/technology/epf/
-technology.esl,/home/data/httpd/download.eclipse.org/esl/
-technology.examples,/home/data/httpd/download.eclipse.org/technology/examples/
-technology.fproj,/home/data/httpd/download.eclipse.org/fproj/
-technology.gef3d,/home/data/httpd/download.eclipse.org/gef3d/
-technology.gyrex,/home/data/httpd/download.eclipse.org/gyrex/
-technology.higgins,/home/data/httpd/download.eclipse.org/technology/higgins/
-technology.iam,/home/data/httpd/download.eclipse.org/technology/iam/
-technology.ide4edu,/home/data/httpd/download.eclipse.org/ide4edu/
-technology.imp,/home/data/httpd/download.eclipse.org/technology/imp/
-technology.jgit,/home/data/httpd/download.eclipse.org/jgit/
-technology.jubula,/home/data/httpd/download.eclipse.org/jubula/
-technology.koneki,/home/data/httpd/download.eclipse.org/koneki/
-technology.m2e,/home/data/httpd/download.eclipse.org/technology/m2e/
-technology.nebula,/home/data/httpd/download.eclipse.org/technology/nebula/
-technology.ofmp,/home/data/httpd/download.eclipse.org/technology/ofmp/
-technology.ohf,/home/data/httpd/download.eclipse.org/technology/ohf/
-technology.osee,/home/data/httpd/download.eclipse.org/technology/osee/
-technology.packaging.mpc,/home/data/httpd/download.eclipse.org/mpc/
-technology.packaging.rtp,/home/data/httpd/download.eclipse.org/rtp/
-technology.phoenix,/home/data/httpd/download.eclipse.org/technology/phoenix/
-technology.recommenders,/home/data/httpd/download.eclipse.org/recommenders/
-technology.remus,/home/data/httpd/download.eclipse.org/remus/
-technology.rtsc,/home/data/httpd/download.eclipse.org/rtsc/
-technology.sapphire,/home/data/httpd/download.eclipse.org/sapphire/
-technology.scout,/home/data/httpd/download.eclipse.org/scout/
-technology.skalli,/home/data/httpd/download.eclipse.org/skalli/
-technology.sketch,/home/data/httpd/download.eclipse.org/sketch/
-technology.stem,/home/data/httpd/download.eclipse.org/stem/
-technology.subversive,/home/data/httpd/download.eclipse.org/technology/subversive/
-technology.swtbot,/home/data/httpd/download.eclipse.org/technology/swtbot/
-technology.swtbot,/home/data/httpd/download.eclipse.org/swtbot/
-technology.tigerstripe,/home/data/httpd/download.eclipse.org/technology/tigerstripe/
-technology.tycho,/home/data/httpd/download.eclipse.org/tycho/
-technology.uomo,/home/data/httpd/download.eclipse.org/uomo/
-technology.vtp,/home/data/httpd/download.eclipse.org/technology/vtp/
-technology,/home/data/httpd/download.eclipse.org/technology/
-tools.ajdt,/home/data/httpd/download.eclipse.org/tools/ajdt/
-tools.aspectj,/home/data/httpd/download.eclipse.org/tools/aspectj/
-tools.atf,/home/data/httpd/download.eclipse.org/tools/atf/
-tools.buckminster,/home/data/httpd/download.eclipse.org/tools/buckminster/
-tools.cdt.tcf,/home/data/httpd/download.eclipse.org/tcf/
-tools.cdt,/home/data/httpd/download.eclipse.org/tools/cdt/
-tools.edt,/home/data/httpd/download.eclipse.org/edt/
-tools.gef,/home/data/httpd/download.eclipse.org/tools/gef/
-tools.mat,/home/data/httpd/download.eclipse.org/mat/
-tools.objectteams,/home/data/httpd/download.eclipse.org/objectteams/
-tools.orbit,/home/data/httpd/download.eclipse.org/tools/orbit/
-tools.pdt,/home/data/httpd/download.eclipse.org/tools/pdt/
-tools.ptp.photran,/home/data/httpd/download.eclipse.org/tools/ptp/photran/
-tools.ptp.photran,/home/data/httpd/download.eclipse.org/photran/
-tools.ptp,/home/data/httpd/download.eclipse.org/tools/ptp/
-tools.rat,/home/data/httpd/download.eclipse.org/rat/
-tools.sequoyah.mtj,/home/data/httpd/download.eclipse.org/mtj/
-tools.sequoyah.tmw,/home/data/httpd/download.eclipse.org/tmw/
-tools.sequoyah,/home/data/httpd/download.eclipse.org/sequoyah/
-tools.tm,/home/data/httpd/download.eclipse.org/tm/
-tools.windowbuilder,/home/data/httpd/download.eclipse.org/windowbuilder/
-tools,/home/data/httpd/download.eclipse.org/tools/
-tptp,/home/data/httpd/download.eclipse.org/tptp/
-webtools.dali,/home/data/httpd/download.eclipse.org/webtools/dali/
-webtools.datatools,/home/data/httpd/download.eclipse.org/datatools/
-webtools.incubator,/home/data/httpd/download.eclipse.org/webtools/incubator/
-webtools.jsdt,/home/data/httpd/download.eclipse.org/jsdt/
-webtools.jsf,/home/data/httpd/download.eclipse.org/webtools/jsf/
-webtools.libra,/home/data/httpd/download.eclipse.org/libra/
-webtools.pave,/home/data/httpd/download.eclipse.org/pave/
-webtools.releng,/home/data/httpd/download.eclipse.org/webtools/releng/
-webtools,/home/data/httpd/download.eclipse.org/webtools/
diff --git a/tests/test-BugzillaClient.class.php b/tests/test-BugzillaClient.class.php
deleted file mode 100644
index 39f4db1..0000000
--- a/tests/test-BugzillaClient.class.php
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-include dirname(__FILE__) . '/../classes/BugzillaClient.class.inc';
-include dirname(__FILE__) . '/../classes/TestRunner.class.php';
-
-/*
- * These tests require a Bugzilla instance as follows:
- * - URL: http://localhost/bugzilla
- * - username: wayne@eclipse.org
- * - username: genie@eclipse.org password: blahblah
- */
-
-class BugzillaClientTests extends TestCase {
- var $client;
-
- function setUp() {
- $this->client = new BugzillaClient('http://localhost/bugzilla');
- }
-
- function tearDown() {
- $this->client->logout();
- }
-
- function testSuccessfulLogin() {
- $this->client->login('genie@eclipse.org', 'blahblah');
- $this->assertTrue($this->client->isLoggedIn());
- }
-
- function testInvalidPasswordLogin() {
- try {
- $this->client->login('genie@eclipse.org', 'blahblahblah');
- $this->fail("An exception should have been thrown!");
- } catch (BugzillaInvalidCredentialsException $e) {
- $this->assertEquals("Invalid Username Or Password", $e->getMessage());
- }
- }
-
- function testInvalidHost() {
- $client = new BugzillaClient('http://localhost/bogus');
- try {
- $client->login('genie@eclipse.org', 'blahblah');
- $this->fail("An exception should have been thrown!");
- } catch (Exception $e) {
- $this->assertTrue(preg_match('/404/', $e->getMessage()));
- }
- }
-
- function testCreateABug() {
- $this->client->login('genie@eclipse.org', 'blahblah');
- $bug = $this->client
- ->startBug('TestProduct', 'TestComponent', 'A test bug')
- ->addParagraph('Now is the time for all good folks to come to the aid of the party')
- ->addCC('wayne@eclipse.org')
- ->create();
- $this->assertNotNull($bug->getId());
- }
-
- function testCreateABugWithAttachment() {
- $this->client->login('genie@eclipse.org', 'blahblah');
- $bug = $this->client
- ->startBug('TestProduct', 'TestComponent', 'A test bug with an attachment')
- ->addParagraph('Now is the time for all good folks to come to the aid of the party')
- ->addCC('wayne@eclipse.org')
- ->create();
-
- echo "**** Bug created: $bug->id \n";
-
- $attachment = $bug->startAttachment()
- ->setFile('/home/wayne/Downloads/technology.sisu-0.2-iplog.html')
- ->setDescription('The quick brown fox jumped over the lazy dog')
- ->create();
-
- echo "**** Attachment created: $attachment->id \n";
-
- //$this->assertNotNull($attachment->getId());
- }
-}
-
-$runner = new TextTestRunner('BugzillaClientTests');
-$runner->run_tests();
-?>
\ No newline at end of file
diff --git a/tests/test-Project.class.php b/tests/test-Project.class.php
deleted file mode 100644
index d0016bc..0000000
--- a/tests/test-Project.class.php
+++ /dev/null
@@ -1,67 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2010, 2016 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Wayne Beaton (Eclipse Foundation)- initial API and implementation
- *******************************************************************************/
-
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-$App = new App();
-
-require_once '../classes/TestRunner.class.php';
-
-class ProjectTests extends TestCase {
-
- function testExtractShortDescription() {
- $this->assertEquals("Description1", Project::extractShortDescription("<p>Description1</p>"));
- $this->assertEquals("Description2", Project::extractShortDescription("<div><p>Description2</p>\n<p>Junk</p></div>"));
- $this->assertEquals("Description3\nline2", Project::extractShortDescription("<p>Description3\nline2</p>"));
- $this->assertEquals("Description4", Project::extractShortDescription("<h1>Ignore</h1><p>Description4</p><p>line2</p>"));
-
- $this->assertEquals("x <b>q</b> z", Project::extractShortDescription("<h1>Ignore</h1><p>x <b>q</b> z</p><p>line2</p>"));
- $this->assertEquals("x q", Project::extractShortDescription("<h1>Ignore</h1><p>x q<br> c</p><p>line2</p>"));
- $this->assertEquals("x q", Project::extractShortDescription("<h1>Ignore</h1><p>x q<br/> c</p><p>line2</p>"));
- $this->assertEquals("x q", Project::extractShortDescription("<h1>Ignore</h1><p>x q<br /> c</p><p>line2</p>"));
- $this->assertEquals("x q", Project::extractShortDescription("<p><div>x q</div></p>"));
- $this->assertEquals("x q", Project::extractShortDescription("<p><div style=\"blah\">x q</div></p>"));
- }
-
- function testExtractShortDescription2() {
- $this->assertEquals("Two words ...", Project::extractShortDescription("<p>Two words are better than one.</p>", 2));
- }
-
- function testGetSourceRepository() {
- $this->assertEquals('cvs', getSourceRepository('/cvsroot/modeling/org.eclipse.emf/org.eclipse.emf.emf4net.releng')->getType());
- $this->assertEquals('/cvsroot/modeling/org.eclipse.emf/org.eclipse.emf.emf4net.releng', getSourceRepository('/cvsroot/modeling/org.eclipse.emf/org.eclipse.emf.emf4net.releng')->getPath());
- $this->assertEquals('/cvsroot/modeling/org.eclipse.emf/org.eclipse.emf.emf4net.releng', getSourceRepository('/cvsroot/modeling/org.eclipse.emf/org.eclipse.emf.emf4net.releng/')->getPath());
-
- $this->assertEquals('svn', getSourceRepository('/technology/org.eclipse.imp')->getType());
- $this->assertEquals('/svnroot/technology/org.eclipse.imp', getSourceRepository('technology/org.eclipse.imp')->getPath());
- $this->assertEquals('/svnroot/technology/org.eclipse.imp', getSourceRepository('technology/org.eclipse.imp/')->getPath());
- $this->assertEquals('/svnroot/technology/org.eclipse.imp', getSourceRepository('/technology/org.eclipse.imp')->getPath());
- $this->assertEquals('/svnroot/technology/org.eclipse.imp', getSourceRepository('/technology/org.eclipse.imp/')->getPath());
- $this->assertEquals('/svnroot/technology/org.eclipse.imp', getSourceRepository('/svnroot/technology/org.eclipse.imp')->getPath());
- $this->assertEquals('/svnroot/technology/org.eclipse.imp', getSourceRepository('/svnroot/technology/org.eclipse.imp/')->getPath());
-
- $this->assertEquals('git', getSourceRepository('git://git.eclipse.org/gitroot/sketch/org.eclipse.sketch.git')->getType());
- $this->assertEquals('git', getSourceRepository('/gitroot/ecf/org.eclipse.ecf.git/')->getType());
- $this->assertEquals('git', getSourceRepository('/gitroot/ecf/org.eclipse.ecf.git')->getType());
- $this->assertEquals('git', getSourceRepository('git://egit.eclipse.org/egit.git')->getType());
- $this->assertEquals('/gitroot/sketch/org.eclipse.sketch.git', getSourceRepository('git://git.eclipse.org/gitroot/sketch/org.eclipse.sketch.git')->getPath());
- $this->assertEquals('/gitroot/ecf/org.eclipse.ecf.git', getSourceRepository('/gitroot/ecf/org.eclipse.ecf.git')->getPath());
- $this->assertEquals('/gitroot/ecf/org.eclipse.ecf.git', getSourceRepository('/gitroot/ecf/org.eclipse.ecf.git/')->getPath());
- $this->assertEquals('/gitroot/ecf/org.eclipse.ecf.git', getSourceRepository('http://git.eclipse.org/c/gitroot/ecf/org.eclipse.ecf.git/')->getPath());
- }
-}
-
-$App = new App();
-
-$runner = new TestRunner("ProjectTests");
-$runner->run_tests();
-
-?>
\ No newline at end of file
diff --git a/tests/test-Proposal.class.php b/tests/test-Proposal.class.php
deleted file mode 100644
index 5ddf9d5..0000000
--- a/tests/test-Proposal.class.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2010 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Wayne Beaton (Eclipse Foundation)- initial API and implementation
- *******************************************************************************/
-
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-$App = new App();
-
-require_once '../classes/Proposal.class.php';
-require_once '../classes/TestRunner.class.php';
-
-class ProposalTests extends TestCase {
- function testExtractScope() {
- $this->assertEquals("Junk", Proposal::extractScope("bogusurl", "stuff <h2>Scope</h2>Junk<h2>Description</h2> More stuff"));
- }
-
-}
-
-$App = new App();
-
-$runner = new TestRunner("ProposalTests");
-$runner->run_tests();
-
-?>
\ No newline at end of file
diff --git a/tests/test-common.php b/tests/test-common.php
deleted file mode 100644
index 9da00f0..0000000
--- a/tests/test-common.php
+++ /dev/null
@@ -1,81 +0,0 @@
-<?php
-/*******************************************************************************
- * Copyright (c) 2010 Eclipse Foundation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Wayne Beaton (Eclipse Foundation)- initial API and implementation
- *******************************************************************************/
-
-require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/classes/debug.php");
-trace_file_info(__FILE__);
-
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-
-require_once '../classes/common.php';
-require_once '../classes/TestRunner.class.php';
-
-class CommonTests extends TestCase {
-
- function test_is_valid_project_name() {
- $this->assertTrue(isValidProjectId("eclipse"));
- $this->assertTrue(isValidProjectId("eclipse.technology"));
- $this->assertTrue(isValidProjectId("eclipse.technology.foo"));
- $this->assertTrue(isValidProjectId("eclipse.technology.g-foo"));
-
- $this->assertFalse(isValidProjectId(""));
- $this->assertFalse(isValidProjectId("eclipse.technology.foo.stuff"));
- }
-
- function test_get_parent_project_id() {
- $this->assertEquals("eclipse.jdt", getParentProjectId('eclipse.jdt.debugging'));
- $this->assertEquals("eclipse", getParentProjectId('eclipse.jdt'));
- $this->assertNull(getParentProjectId('eclipse'));
- }
-
- function test_is_valid_subproject_id() {
- $this->assertTrue(is_valid_subproject_id('eclipse.jdt', 'eclipse.jdt.debugging'));
- $this->assertTrue(is_valid_subproject_id('eclipse', 'eclipse.jdt.debugging'));
- $this->assertTrue(is_valid_subproject_id('eclipse', 'eclipse.jdt'));
-
- $this->assertFalse(is_valid_subproject_id('eclipse', 'technology.jdt'));
- }
- function testUrlFileNormalization() {
-
- $this->assertEquals("/test/foo1.php", normalizeRelativeUrl("http://www.eclipse.org/test/foo1.php"));
- $this->assertEquals("/test/foo2.php", normalizeRelativeUrl("/test/foo2.php"));
- $this->assertEquals("/test/foo3.php", normalizeRelativeUrl("test/foo3.php"));
- $this->assertEquals("/test-2/foo3.php", normalizeRelativeUrl("test-2/foo3.php"));
- $this->assertEquals("/foo/project-info/project-page-paragraph.html", normalizeRelativeUrl("/foo/project-info/project-page-paragraph.html"));
- $this->assertEquals("/modeling/gmp/gmf-notation/project-info/project-page-paragraph.html", normalizeRelativeUrl("http://localhost/modeling/gmp/gmf-notation/project-info/project-page-paragraph.html"));
- $this->assertNull(normalizeRelativeUrl("http://wiki.eclipse.org/junk"));
- }
-
- function testUrlHttpNormalization() {
-
- $this->assertEquals("http://www.eclipse.org/test/foo1.php", normalizeHttpUrl("http://www.eclipse.org/test/foo1.php"));
- $this->assertEquals("http://eclipse.org/test/foo2.php", normalizeHttpUrl("http://eclipse.org/test/foo2.php"));
- $this->assertEquals("http://eclipse.org/test/foo3.php", normalizeHttpUrl("/test/foo3.php"));
- $this->assertEquals("http://eclipse.org/test/foo4.php", normalizeHttpUrl("test/foo4.php"));
- $this->assertEquals("http://git.eclipse.org/c/jetty/org.eclipse.jetty.admin.git/plain/jetty-project-plan.xml", normalizeHttpUrl("http://git.eclipse.org/c/jetty/org.eclipse.jetty.admin.git/plain/jetty-project-plan.xml"));
- $this->assertNull(normalizeHttpUrl("http://junk/test/foo4.php"));
-
- $this->assertEquals("http://wiki.eclipse.org/junk", normalizeHttpUrl("http://wiki.eclipse.org/junk"));
- $this->assertEquals("http://wiki.eclipse.org/DSDP/Restructuring_Review", normalizeHttpUrl("http://wiki.eclipse.org/DSDP/Restructuring_Review"));
-
-
-
- // Test some wiki links;
- $this->assertEquals("http://wiki.eclipse.org/test/foo1.php", normalizeHttpUrl("http://wiki.eclipse.org/test/foo1.php", array('wiki')));
- }
-
-}
-
-$App = new App();
-
-$runner = new TestRunner("CommonTests");
-$runner->run_tests();
-?>
\ No newline at end of file
diff --git a/tools/hierarchy.php b/tools/hierarchy.php
index 8a1e4b5..0c18001 100644
--- a/tools/hierarchy.php
+++ b/tools/hierarchy.php
@@ -28,10 +28,6 @@
require_once $_SERVER['DOCUMENT_ROOT'] . '/projects/classes/common.php';
require_once $_SERVER['DOCUMENT_ROOT'] . '/projects/classes/debug.php';
-function navigateHierarchy($project, $indent, $function) {
-
-}
-
ob_start();
?>
<div id="maincontent">