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.trac.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.trac.tests')
-rw-r--r--org.eclipse.mylyn.trac.tests/.classpath6
-rw-r--r--org.eclipse.mylyn.trac.tests/.project6
-rw-r--r--org.eclipse.mylyn.trac.tests/META-INF/MANIFEST.MF4
3 files changed, 14 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.trac.tests/.classpath b/org.eclipse.mylyn.trac.tests/.classpath
index 304e86186..d7d62759f 100644
--- a/org.eclipse.mylyn.trac.tests/.classpath
+++ b/org.eclipse.mylyn.trac.tests/.classpath
@@ -2,6 +2,10 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
+ <accessrules>
+ <accessrule kind="accessible" pattern="org/eclipse/mylyn/**"/>
+ </accessrules>
+ </classpathentry>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/org.eclipse.mylyn.trac.tests/.project b/org.eclipse.mylyn.trac.tests/.project
index 4241ae65f..1f3b6278e 100644
--- a/org.eclipse.mylyn.trac.tests/.project
+++ b/org.eclipse.mylyn.trac.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.trac.tests/META-INF/MANIFEST.MF b/org.eclipse.mylyn.trac.tests/META-INF/MANIFEST.MF
index 11f10b086..aae2f6289 100644
--- a/org.eclipse.mylyn.trac.tests/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.trac.tests/META-INF/MANIFEST.MF
@@ -18,7 +18,9 @@ Require-Bundle: org.junit,
org.eclipse.jface.text,
org.eclipse.mylyn.web.core,
org.apache.xmlrpc;bundle-version="3.0.0"
-Export-Package: org.eclipse.mylyn.trac.tests
+Export-Package: org.eclipse.mylyn.internal.trac.ui;x-internal:=true,
+ org.eclipse.mylyn.trac.tests;x-internal:=true,
+ org.eclipse.mylyn.trac.tests.support;x-internal:=true
Bundle-Activator: org.eclipse.mylyn.trac.tests.TracTestPlugin
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.5

Back to the top