Skip to content

Commit

Permalink
[sre] Fixing the buggy definition of the Janus SRE.
Browse files Browse the repository at this point in the history
close #768

Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Oct 9, 2017
1 parent 9d5a1c9 commit c45c02e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sre/io.janusproject/io.janusproject.eclipse/about.mappings
Expand Up @@ -6,7 +6,7 @@
# This file may be automatically generated.
# Do not change it if there no replacement variables below.

0=20171008193655
0=20171009174538
1=2014-2017
2=the original authors or authors
3=http://www.sarl.io
Expand Down
4 changes: 2 additions & 2 deletions sre/io.janusproject/io.janusproject.eclipse/plugin.xml
Expand Up @@ -10,7 +10,7 @@

<extension point="org.eclipse.jdt.core.classpathContainerInitializer">
<classpathContainerInitializer
id="io.janusproject.plugin.launching.JANUS_SUPPORT"
id="io.janusproject.eclipse.launching.JANUS_SUPPORT"
class="io.janusproject.eclipse.buildpath.JanusClasspathContainerInitializer"/>
</extension>

Expand All @@ -19,7 +19,7 @@
<classpathContainerPage
name="%classpathContainerPage.name"
class="io.janusproject.eclipse.buildpath.JanusContainerWizardPage"
id="io.janusproject.plugin.launching.JANUS_SUPPORT">
id="io.janusproject.eclipse.launching.JANUS_SUPPORT">
</classpathContainerPage>
</extension>

Expand Down
Expand Up @@ -38,9 +38,13 @@
*/
public class JanusEclipsePlugin extends AbstractUIPlugin {

/** Identifier of the plugin.
/** Identifier of the plugin for Eclipse integration of Janus.
*/
public static final String PLUGIN_ID = "io.janusproject.plugin"; //$NON-NLS-1$
public static final String PLUGIN_ID = "io.janusproject.eclipse"; //$NON-NLS-1$

/** Identifier of the plugin of Janus itself.
*/
public static final String JANUS_KERNEL_PLUGIN_ID = "io.janusproject.plugin"; //$NON-NLS-1$

private static JanusEclipsePlugin instance;

Expand Down
Expand Up @@ -54,6 +54,8 @@ public class JanusClasspathContainer extends AbstractSARLBasedClasspathContainer

static {
final String[] array1 = new String[] {
JanusEclipsePlugin.JANUS_KERNEL_PLUGIN_ID,
"com.google.code.gson", //$NON-NLS-1$
"com.google.code.gson", //$NON-NLS-1$
"com.google.inject", //$NON-NLS-1$
"com.hazelcast", //$NON-NLS-1$
Expand Down

0 comments on commit c45c02e

Please sign in to comment.