Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
index 21bb39138..70c727789 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
@@ -124,12 +124,16 @@ public class TaskRepository {
this.properties.put(IRepositoryConstants.PROPERTY_VERSION, version);
this.properties.put(IRepositoryConstants.PROPERTY_ENCODING, encoding);
this.properties.put(IRepositoryConstants.PROPERTY_TIMEZONE, timeZoneId);
+ // use platform proxy by default (headless will need to set this to false)
+ this.setProperty(TaskRepository.PROXY_USEDEFAULT, new Boolean(true).toString());
}
public TaskRepository(String kind, String serverUrl, Map<String, String> properties) {
this.properties.put(IRepositoryConstants.PROPERTY_KIND, kind);
this.properties.put(IRepositoryConstants.PROPERTY_URL, serverUrl);
this.properties.putAll(properties);
+ // use platform proxy by default (headless will need to set this to false)
+ this.setProperty(TaskRepository.PROXY_USEDEFAULT, new Boolean(true).toString());
}
public String getUrl() {

Back to the top