File tree 5 files changed +31
-2
lines changed
cobigen-eclipse/cobigen-eclipse
src/com/capgemini/cobigen/eclipse
5 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<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" />
3
8
<classpathentry exported =" true" kind =" lib" path =" lib/cobigen-core-api-3.0.0-SNAPSHOT.jar" />
4
9
<classpathentry exported =" true" kind =" lib" path =" lib/cobigen-core-3.0.0-SNAPSHOT.jar" sourcepath =" /cobigen-core" />
5
10
<classpathentry exported =" true" kind =" lib" path =" lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar" />
Original file line number Diff line number Diff line change @@ -45,5 +45,10 @@ Bundle-ClassPath: .,
45
45
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,
46
46
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,
47
47
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
49
54
Export-Package : com.capgemini.cobigen.eclipse.common.constants.external
Original file line number Diff line number Diff line change @@ -29,4 +29,9 @@ bin.includes = .,\
29
29
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,\
30
30
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,\
31
31
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
Original file line number Diff line number Diff line change 39
39
<artifactId >cobigen-textmerger</artifactId >
40
40
<version >1.1.0-SNAPSHOT</version >
41
41
</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 >
42
52
43
53
<dependency >
44
54
<groupId >ch.qos.logback</groupId >
Original file line number Diff line number Diff line change 16
16
import com .capgemini .cobigen .eclipse .workbenchcontrol .ConfigurationProjectListener ;
17
17
import com .capgemini .cobigen .impl .PluginRegistry ;
18
18
import com .capgemini .cobigen .javaplugin .JavaPluginActivator ;
19
+ import com .capgemini .cobigen .jsonplugin .JSONPluginActivator ;
19
20
import com .capgemini .cobigen .propertyplugin .PropertyMergerPluginActivator ;
21
+ import com .capgemini .cobigen .senchaplugin .SenchaPluginActivator ;
20
22
import com .capgemini .cobigen .textmerger .TextMergerPluginActivator ;
21
23
import com .capgemini .cobigen .xmlplugin .XmlPluginActivator ;
22
24
@@ -63,6 +65,8 @@ public void start(BundleContext context) throws Exception {
63
65
PluginRegistry .loadPlugin (XmlPluginActivator .class );
64
66
PluginRegistry .loadPlugin (PropertyMergerPluginActivator .class );
65
67
PluginRegistry .loadPlugin (TextMergerPluginActivator .class );
68
+ PluginRegistry .loadPlugin (JSONPluginActivator .class );
69
+ PluginRegistry .loadPlugin (SenchaPluginActivator .class );
66
70
startConfigurationProjectListener ();
67
71
MDC .remove (InfrastructureConstants .CORRELATION_ID );
68
72
}
You can’t perform that action at this time.
0 commit comments