Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre-Charles David2016-05-11 11:46:03 +0000
committerPierre-Charles David2016-05-17 13:14:51 +0000
commitb9ffe4ed50c9d54d86f5bc12a4d073dc435101a8 (patch)
tree182a3b0b8a994b9685a1ca98f98ec74b13037c5a
parenta826f087b4cbbd27c54073fca72f20be9c74a1a9 (diff)
downloadorg.eclipse.sirius-b9ffe4ed50c9d54d86f5bc12a4d073dc435101a8.tar.gz
org.eclipse.sirius-b9ffe4ed50c9d54d86f5bc12a4d073dc435101a8.tar.xz
org.eclipse.sirius-b9ffe4ed50c9d54d86f5bc12a4d073dc435101a8.zip
[482528] Configure projects to allow access to all of Sirius
This avoids a lot of warnings about accesses to Sirius internal which are not an issue in practice as these are co-developped with the rest of Sirius. Bug: 482528 Change-Id: Ib6b78397812af454041899db192a818f25bcf147 Signed-off-by: Pierre-Charles David <pierre-charles.david@obeo.fr>
-rw-r--r--incubation/org.eclipse.sirius.editor.properties/.classpath6
-rw-r--r--incubation/org.eclipse.sirius.ui.properties/.classpath6
2 files changed, 10 insertions, 2 deletions
diff --git a/incubation/org.eclipse.sirius.editor.properties/.classpath b/incubation/org.eclipse.sirius.editor.properties/.classpath
index 52bfdf17a0..6db874af86 100644
--- a/incubation/org.eclipse.sirius.editor.properties/.classpath
+++ b/incubation/org.eclipse.sirius.editor.properties/.classpath
@@ -1,6 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <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/sirius/**"/>
+ </accessrules>
+ </classpathentry>
<classpathentry kind="src" path="src-gen"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="output" path="bin"/>
diff --git a/incubation/org.eclipse.sirius.ui.properties/.classpath b/incubation/org.eclipse.sirius.ui.properties/.classpath
index 098194ca4b..af46b84c1e 100644
--- a/incubation/org.eclipse.sirius.ui.properties/.classpath
+++ b/incubation/org.eclipse.sirius.ui.properties/.classpath
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
- <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/sirius/**"/>
+ </accessrules>
+ </classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Back to the top