Skip to content

Commit 2bdde8e

Browse files
committed
#264 #263 jsonplugin and senchaplugin integrated to eclipse plugin
1 parent b6c7d23 commit 2bdde8e

File tree

5 files changed

+31
-2
lines changed

5 files changed

+31
-2
lines changed

cobigen-eclipse/cobigen-eclipse/.classpath

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3+
<classpathentry exported="true" kind="lib" path="lib/cobigen-jsonplugin-1.0.0-SNAPSHOT.jar"/>
4+
<classpathentry exported="true" kind="lib" path="lib/cobigen-senchaplugin-1.0.0-SNAPSHOT.jar"/>
5+
<classpathentry exported="true" kind="lib" path="lib/gson-2.7.jar"/>
6+
<classpathentry exported="true" kind="lib" path="lib/json-20160810.jar"/>
7+
<classpathentry exported="true" kind="lib" path="lib/rhino-1.7R4.jar"/>
38
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-api-3.0.0-SNAPSHOT.jar"/>
49
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-3.0.0-SNAPSHOT.jar" sourcepath="/cobigen-core"/>
510
<classpathentry exported="true" kind="lib" path="lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar"/>

cobigen-eclipse/cobigen-eclipse/META-INF/MANIFEST.MF

+6-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,10 @@ Bundle-ClassPath: .,
4545
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,
4646
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,
4747
lib/cobigen-textmerger-1.1.0-SNAPSHOT.jar,
48-
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar
48+
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar,
49+
lib/cobigen-jsonplugin-1.0.0-SNAPSHOT.jar,
50+
lib/cobigen-senchaplugin-1.0.0-SNAPSHOT.jar,
51+
lib/gson-2.7.jar,
52+
lib/json-20160810.jar,
53+
lib/rhino-1.7R4.jar
4954
Export-Package: com.capgemini.cobigen.eclipse.common.constants.external

cobigen-eclipse/cobigen-eclipse/build.properties

+6-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,9 @@ bin.includes = .,\
2929
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,\
3030
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,\
3131
lib/cobigen-textmerger-1.1.0-SNAPSHOT.jar,\
32-
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar
32+
lib/cobigen-core-api-3.0.0-SNAPSHOT.jar,\
33+
lib/cobigen-jsonplugin-1.0.0-SNAPSHOT.jar,\
34+
lib/cobigen-senchaplugin-1.0.0-SNAPSHOT.jar,\
35+
lib/gson-2.7.jar,\
36+
lib/json-20160810.jar,\
37+
lib/rhino-1.7R4.jar

cobigen-eclipse/cobigen-eclipse/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@
3939
<artifactId>cobigen-textmerger</artifactId>
4040
<version>1.1.0-SNAPSHOT</version>
4141
</dependency>
42+
<dependency>
43+
<groupId>com.capgemini</groupId>
44+
<artifactId>cobigen-jsonplugin</artifactId>
45+
<version>1.0.0-SNAPSHOT</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>com.capgemini</groupId>
49+
<artifactId>cobigen-senchaplugin</artifactId>
50+
<version>1.0.0-SNAPSHOT</version>
51+
</dependency>
4252

4353
<dependency>
4454
<groupId>ch.qos.logback</groupId>

cobigen-eclipse/cobigen-eclipse/src/com/capgemini/cobigen/eclipse/Activator.java

+4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
import com.capgemini.cobigen.eclipse.workbenchcontrol.ConfigurationProjectListener;
1717
import com.capgemini.cobigen.impl.PluginRegistry;
1818
import com.capgemini.cobigen.javaplugin.JavaPluginActivator;
19+
import com.capgemini.cobigen.jsonplugin.JSONPluginActivator;
1920
import com.capgemini.cobigen.propertyplugin.PropertyMergerPluginActivator;
21+
import com.capgemini.cobigen.senchaplugin.SenchaPluginActivator;
2022
import com.capgemini.cobigen.textmerger.TextMergerPluginActivator;
2123
import com.capgemini.cobigen.xmlplugin.XmlPluginActivator;
2224

@@ -63,6 +65,8 @@ public void start(BundleContext context) throws Exception {
6365
PluginRegistry.loadPlugin(XmlPluginActivator.class);
6466
PluginRegistry.loadPlugin(PropertyMergerPluginActivator.class);
6567
PluginRegistry.loadPlugin(TextMergerPluginActivator.class);
68+
PluginRegistry.loadPlugin(JSONPluginActivator.class);
69+
PluginRegistry.loadPlugin(SenchaPluginActivator.class);
6670
startConfigurationProjectListener();
6771
MDC.remove(InfrastructureConstants.CORRELATION_ID);
6872
}

0 commit comments

Comments
 (0)