Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-04-01 06:05:33 +0000
committerspingel2008-04-01 06:05:33 +0000
commit88649c889d5fdf5d16c3f55a1dfa6865dc99823c (patch)
tree94306847ad57e6df11acb4cf5a9bd8d8522e4649 /org.eclipse.mylyn.tasks.tests
parentde097120075206abaf422697ced95d4eda8a8e8d (diff)
downloadorg.eclipse.mylyn.tasks-88649c889d5fdf5d16c3f55a1dfa6865dc99823c.tar.gz
org.eclipse.mylyn.tasks-88649c889d5fdf5d16c3f55a1dfa6865dc99823c.tar.xz
org.eclipse.mylyn.tasks-88649c889d5fdf5d16c3f55a1dfa6865dc99823c.zip
NEW - bug 225040: mark internal packages as x-internal
https://bugs.eclipse.org/bugs/show_bug.cgi?id=225040
Diffstat (limited to 'org.eclipse.mylyn.tasks.tests')
-rw-r--r--org.eclipse.mylyn.tasks.tests/.classpath1
-rw-r--r--org.eclipse.mylyn.tasks.tests/.project6
-rw-r--r--org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskRepositoryTest.java2
3 files changed, 9 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.tests/.classpath b/org.eclipse.mylyn.tasks.tests/.classpath
index c9c6503f7..77f8017a9 100644
--- a/org.eclipse.mylyn.tasks.tests/.classpath
+++ b/org.eclipse.mylyn.tasks.tests/.classpath
@@ -3,6 +3,7 @@
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
<accessrules>
+ <accessrule kind="accessible" pattern="org/eclipse/mylyn/**"/>
<accessrule kind="accessible" pattern="**/internal/**"/>
</accessrules>
</classpathentry>
diff --git a/org.eclipse.mylyn.tasks.tests/.project b/org.eclipse.mylyn.tasks.tests/.project
index 63df12cbd..7098e8761 100644
--- a/org.eclipse.mylyn.tasks.tests/.project
+++ b/org.eclipse.mylyn.tasks.tests/.project
@@ -20,9 +20,15 @@
<arguments>
</arguments>
</buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.api.tools.apiAnalysisBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.eclipse.pde.api.tools.apiAnalysisNature</nature>
</natures>
</projectDescription>
diff --git a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskRepositoryTest.java b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskRepositoryTest.java
index b663e9826..c11dfda37 100644
--- a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskRepositoryTest.java
+++ b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskRepositoryTest.java
@@ -83,6 +83,8 @@ public class TaskRepositoryTest extends TestCase {
assertTrue(Platform.isRunning());
}
+ // TODO e3.4 move to new api
+ @SuppressWarnings("deprecation")
public void password(AuthenticationType authType) throws Exception {
URL url = new URL("http://url");
TaskRepository taskRepository = new TaskRepository("kind", url.toString());

Back to the top