Skip to content

Commit

Permalink
#264 #263 jsonplugin and senchaplugin integrated to eclipse plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
maybeec committed Dec 2, 2016
1 parent b6c7d23 commit 2bdde8e
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 2 deletions.
5 changes: 5 additions & 0 deletions cobigen-eclipse/cobigen-eclipse/.classpath
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="lib/cobigen-jsonplugin-1.0.0-SNAPSHOT.jar"/>
<classpathentry exported="true" kind="lib" path="lib/cobigen-senchaplugin-1.0.0-SNAPSHOT.jar"/>
<classpathentry exported="true" kind="lib" path="lib/gson-2.7.jar"/>
<classpathentry exported="true" kind="lib" path="lib/json-20160810.jar"/>
<classpathentry exported="true" kind="lib" path="lib/rhino-1.7R4.jar"/>
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-api-3.0.0-SNAPSHOT.jar"/>
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-3.0.0-SNAPSHOT.jar" sourcepath="/cobigen-core"/>
<classpathentry exported="true" kind="lib" path="lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar"/>
Expand Down
7 changes: 6 additions & 1 deletion cobigen-eclipse/cobigen-eclipse/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,10 @@ Bundle-ClassPath: .,
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,
lib/cobigen-textmerger-1.1.0-SNAPSHOT.jar,
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar,
lib/cobigen-jsonplugin-1.0.0-SNAPSHOT.jar,
lib/cobigen-senchaplugin-1.0.0-SNAPSHOT.jar,
lib/gson-2.7.jar,
lib/json-20160810.jar,
lib/rhino-1.7R4.jar
Export-Package: com.capgemini.cobigen.eclipse.common.constants.external
7 changes: 6 additions & 1 deletion cobigen-eclipse/cobigen-eclipse/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,9 @@ bin.includes = .,\
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,\
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,\
lib/cobigen-textmerger-1.1.0-SNAPSHOT.jar,\
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar,\
lib/cobigen-jsonplugin-1.0.0-SNAPSHOT.jar,\
lib/cobigen-senchaplugin-1.0.0-SNAPSHOT.jar,\
lib/gson-2.7.jar,\
lib/json-20160810.jar,\
lib/rhino-1.7R4.jar
10 changes: 10 additions & 0 deletions cobigen-eclipse/cobigen-eclipse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
<artifactId>cobigen-textmerger</artifactId>
<version>1.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.capgemini</groupId>
<artifactId>cobigen-jsonplugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.capgemini</groupId>
<artifactId>cobigen-senchaplugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
import com.capgemini.cobigen.eclipse.workbenchcontrol.ConfigurationProjectListener;
import com.capgemini.cobigen.impl.PluginRegistry;
import com.capgemini.cobigen.javaplugin.JavaPluginActivator;
import com.capgemini.cobigen.jsonplugin.JSONPluginActivator;
import com.capgemini.cobigen.propertyplugin.PropertyMergerPluginActivator;
import com.capgemini.cobigen.senchaplugin.SenchaPluginActivator;
import com.capgemini.cobigen.textmerger.TextMergerPluginActivator;
import com.capgemini.cobigen.xmlplugin.XmlPluginActivator;

Expand Down Expand Up @@ -63,6 +65,8 @@ public void start(BundleContext context) throws Exception {
PluginRegistry.loadPlugin(XmlPluginActivator.class);
PluginRegistry.loadPlugin(PropertyMergerPluginActivator.class);
PluginRegistry.loadPlugin(TextMergerPluginActivator.class);
PluginRegistry.loadPlugin(JSONPluginActivator.class);
PluginRegistry.loadPlugin(SenchaPluginActivator.class);
startConfigurationProjectListener();
MDC.remove(InfrastructureConstants.CORRELATION_ID);
}
Expand Down

0 comments on commit 2bdde8e

Please sign in to comment.