Skip to content

Commit 11c8a76

Browse files
committed
#230 set release version
1 parent 781ef26 commit 11c8a76

File tree

15 files changed

+85
-53
lines changed

15 files changed

+85
-53
lines changed

cobigen-eclipse/cobigen-eclipse-feature/.project

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
33
<name>cobigen-eclipse-feature</name>
4+
<comment></comment>
45
<projects>
56
<project>cobigen-eclipse</project>
67
</projects>
@@ -10,8 +11,20 @@
1011
<arguments>
1112
</arguments>
1213
</buildCommand>
14+
<buildCommand>
15+
<name>org.eclipse.m2e.core.maven2Builder</name>
16+
<arguments>
17+
</arguments>
18+
</buildCommand>
19+
<buildCommand>
20+
<name>org.eclipse.pde.FeatureBuilder</name>
21+
<arguments>
22+
</arguments>
23+
</buildCommand>
1324
</buildSpec>
1425
<natures>
26+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
1527
<nature>org.eclipse.jdt.core.javanature</nature>
28+
<nature>org.eclipse.pde.FeatureNature</nature>
1629
</natures>
1730
</projectDescription>

cobigen-eclipse/cobigen-eclipse-feature/feature.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="com.capgemini.cobigen.eclipse.feature"
44
label="CobiGen Eclipse Plug-in"
5-
version="2.0.0.qualifier"
5+
version="2.0.0"
66
provider-name="Capgemini">
77

88
<description>

cobigen-eclipse/cobigen-eclipse-feature/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>com.capgemini.cobigen.eclipse.feature</artifactId>
66
<name>CobiGen - Eclipse Plug-In Feature</name>
77
<packaging>eclipse-feature</packaging>
8-
<version>2.0.0-SNAPSHOT</version>
8+
<version>2.0.0</version>
99

1010
<parent>
1111
<groupId>com.capgemini</groupId>
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src/main/java"/>
4-
<classpathentry excluding="**" kind="src" path="src/main/resources"/>
3+
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-test-3.0.0.jar"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
5+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
6+
<classpathentry kind="src" path="src/main/java/"/>
57
<classpathentry exported="true" kind="lib" path="lib/assertj-core-2.1.0.jar"/>
68
<classpathentry exported="true" kind="lib" path="lib/jcl-over-slf4j-1.7.21.jar"/>
79
<classpathentry exported="true" kind="lib" path="lib/log4j-over-slf4j-1.7.21.jar"/>
810
<classpathentry exported="true" kind="lib" path="lib/slf4j-api-1.7.21.jar"/>
9-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
10-
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
1111
<classpathentry kind="output" path="target/classes"/>
1212
</classpath>

cobigen-eclipse/cobigen-eclipse-test/.project

+6
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,14 @@
2020
<arguments>
2121
</arguments>
2222
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.m2e.core.maven2Builder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
2328
</buildSpec>
2429
<natures>
30+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
2531
<nature>org.eclipse.pde.PluginNature</nature>
2632
<nature>org.eclipse.jdt.core.javanature</nature>
2733
</natures>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Bundle-ClassPath: .,
1111
lib/jcl-over-slf4j-1.7.21.jar,
1212
lib/log4j-over-slf4j-1.7.21.jar,
1313
lib/slf4j-api-1.7.21.jar,
14-
lib/cobigen-core-test-3.0.0-SNAPSHOT.jar
14+
lib/cobigen-core-test-3.0.0.jar
1515
Require-Bundle: org.eclipse.swtbot.junit4_x;bundle-version="2.4.0",
1616
org.junit;bundle-version="4.12.0",
1717
org.eclipse.ui,

cobigen-eclipse/cobigen-eclipse-test/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ bin.includes = .,\
77
lib/jcl-over-slf4j-1.7.21.jar,\
88
lib/log4j-over-slf4j-1.7.21.jar,\
99
lib/slf4j-api-1.7.21.jar,\
10-
lib/cobigen-core-test-3.0.0-SNAPSHOT.jar
10+
lib/cobigen-core-test-3.0.0.jar

cobigen-eclipse/cobigen-eclipse-test/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>com.capgemini</groupId>
2323
<artifactId>cobigen-core-test</artifactId>
24-
<version>3.0.0-SNAPSHOT</version>
24+
<version>3.0.0</version>
2525
</dependency>
2626
</dependencies>
2727

cobigen-eclipse/cobigen-eclipse-updatesite/.project

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
33
<name>cobigen-eclipse-updatesite</name>
4+
<comment></comment>
45
<projects>
56
<project>cobigen-eclipse</project>
67
<project>cobigen-eclipse-feature</project>
@@ -11,8 +12,14 @@
1112
<arguments>
1213
</arguments>
1314
</buildCommand>
15+
<buildCommand>
16+
<name>org.eclipse.m2e.core.maven2Builder</name>
17+
<arguments>
18+
</arguments>
19+
</buildCommand>
1420
</buildSpec>
1521
<natures>
22+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
1623
<nature>org.eclipse.jdt.core.javanature</nature>
1724
</natures>
1825
</projectDescription>

cobigen-eclipse/cobigen-eclipse-updatesite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>com.capgemini.cobigen.eclipse.updatesite</artifactId>
66
<name>CobiGen - Eclipse Plug-In UpdateSite</name>
77
<packaging>eclipse-repository</packaging>
8-
<version>2.0.0-SNAPSHOT</version>
8+
<version>2.0.0</version>
99

1010
<parent>
1111
<groupId>com.capgemini</groupId>
+16-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
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"/>
8-
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-api-3.0.0-SNAPSHOT.jar"/>
9-
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-3.0.0-SNAPSHOT.jar" sourcepath="/cobigen-core"/>
10-
<classpathentry exported="true" kind="lib" path="lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar"/>
11-
<classpathentry exported="true" kind="lib" path="lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar"/>
12-
<classpathentry exported="true" kind="lib" path="lib/cobigen-textmerger-1.1.0-SNAPSHOT.jar"/>
13-
<classpathentry exported="true" kind="lib" path="lib/lexeme-1.0.0.jar"/>
14-
<classpathentry exported="true" kind="lib" path="lib/sax-2.0.1.jar"/>
3+
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-3.0.0.jar"/>
4+
<classpathentry exported="true" kind="lib" path="lib/cobigen-core-api-3.0.0.jar"/>
5+
<classpathentry exported="true" kind="lib" path="lib/cobigen-javaplugin-1.4.0.jar"/>
6+
<classpathentry exported="true" kind="lib" path="lib/cobigen-jsonplugin-1.0.0.jar"/>
7+
<classpathentry exported="true" kind="lib" path="lib/cobigen-propertyplugin-1.1.1.jar"/>
8+
<classpathentry exported="true" kind="lib" path="lib/cobigen-senchaplugin-1.0.0.jar"/>
9+
<classpathentry exported="true" kind="lib" path="lib/cobigen-textmerger-1.1.0.jar"/>
10+
<classpathentry exported="true" kind="lib" path="lib/cobigen-xmlplugin-3.0.0.jar"/>
11+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
12+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
13+
<classpathentry kind="src" path="src/"/>
1514
<classpathentry exported="true" kind="lib" path="lib/ant-1.9.6.jar"/>
16-
<classpathentry exported="true" kind="lib" path="lib/cobigen-xmlplugin-3.0.0-SNAPSHOT.jar"/>
1715
<classpathentry exported="true" kind="lib" path="lib/commons-beanutils-1.9.1.jar"/>
1816
<classpathentry exported="true" kind="lib" path="lib/commons-collections-3.2.1.jar"/>
1917
<classpathentry exported="true" kind="lib" path="lib/commons-io-2.4.jar"/>
@@ -32,8 +30,10 @@
3230
<classpathentry exported="true" kind="lib" path="lib/mmm-util-core-5.0.0.jar"/>
3331
<classpathentry exported="true" kind="lib" path="lib/qdox-2.0-M3.jar"/>
3432
<classpathentry exported="true" kind="lib" path="lib/slf4j-api-1.7.21.jar"/>
35-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
36-
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
37-
<classpathentry kind="src" path="src/"/>
33+
<classpathentry exported="true" kind="lib" path="lib/lexeme-1.0.0.jar"/>
34+
<classpathentry exported="true" kind="lib" path="lib/sax-2.0.1.jar"/>
35+
<classpathentry exported="true" kind="lib" path="lib/gson-2.7.jar"/>
36+
<classpathentry exported="true" kind="lib" path="lib/json-20160810.jar"/>
37+
<classpathentry exported="true" kind="lib" path="lib/rhino-1.7R4.jar"/>
3838
<classpathentry kind="output" path="target/classes"/>
3939
</classpath>

cobigen-eclipse/cobigen-eclipse/.project

+6
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,14 @@
2020
<arguments>
2121
</arguments>
2222
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.m2e.core.maven2Builder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
2328
</buildSpec>
2429
<natures>
30+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
2531
<nature>org.eclipse.pde.PluginNature</nature>
2632
<nature>org.eclipse.jdt.core.javanature</nature>
2733
</natures>

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: CobiGen Eclipse Plug-In
44
Bundle-SymbolicName: com.capgemini.cobigen.eclipse;singleton:=true
5-
Bundle-Version: 2.0.0.qualifier
5+
Bundle-Version: 2.0.0
66
Bundle-Activator: com.capgemini.cobigen.eclipse.Activator
77
Bundle-Vendor: Capgemini
88
Require-Bundle: org.eclipse.ui;bundle-version="3.104.0",
@@ -20,7 +20,6 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.7
2020
Bundle-ActivationPolicy: lazy
2121
Bundle-ClassPath: .,
2222
lib/ant-1.9.6.jar,
23-
lib/cobigen-xmlplugin-3.0.0-SNAPSHOT.jar,
2423
lib/commons-beanutils-1.9.1.jar,
2524
lib/commons-collections-3.2.1.jar,
2625
lib/commons-io-2.4.jar,
@@ -41,14 +40,15 @@ Bundle-ClassPath: .,
4140
lib/slf4j-api-1.7.21.jar,
4241
lib/lexeme-1.0.0.jar,
4342
lib/sax-2.0.1.jar,
44-
lib/cobigen-core-3.0.0-SNAPSHOT.jar,
45-
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,
46-
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,
47-
lib/cobigen-textmerger-1.1.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,
5143
lib/gson-2.7.jar,
5244
lib/json-20160810.jar,
53-
lib/rhino-1.7R4.jar
45+
lib/rhino-1.7R4.jar,
46+
lib/cobigen-core-3.0.0.jar,
47+
lib/cobigen-core-api-3.0.0.jar,
48+
lib/cobigen-javaplugin-1.4.0.jar,
49+
lib/cobigen-jsonplugin-1.0.0.jar,
50+
lib/cobigen-propertyplugin-1.1.1.jar,
51+
lib/cobigen-senchaplugin-1.0.0.jar,
52+
lib/cobigen-textmerger-1.1.0.jar,
53+
lib/cobigen-xmlplugin-3.0.0.jar
5454
Export-Package: com.capgemini.cobigen.eclipse.common.constants.external

cobigen-eclipse/cobigen-eclipse/build.properties

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ bin.includes = .,\
44
META-INF/,\
55
plugin.xml,\
66
lib/ant-1.9.6.jar,\
7-
lib/cobigen-xmlplugin-3.0.0-SNAPSHOT.jar,\
87
lib/commons-beanutils-1.9.1.jar,\
98
lib/commons-collections-3.2.1.jar,\
109
lib/commons-io-2.4.jar,\
@@ -25,13 +24,14 @@ bin.includes = .,\
2524
lib/slf4j-api-1.7.21.jar,\
2625
lib/lexeme-1.0.0.jar,\
2726
lib/sax-2.0.1.jar,\
28-
lib/cobigen-core-3.0.0-SNAPSHOT.jar,\
29-
lib/cobigen-javaplugin-1.4.0-SNAPSHOT.jar,\
30-
lib/cobigen-propertyplugin-1.1.0-SNAPSHOT.jar,\
31-
lib/cobigen-textmerger-1.1.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,\
3527
lib/gson-2.7.jar,\
3628
lib/json-20160810.jar,\
37-
lib/rhino-1.7R4.jar
29+
lib/rhino-1.7R4.jar,\
30+
lib/cobigen-core-3.0.0.jar,\
31+
lib/cobigen-core-api-3.0.0.jar,\
32+
lib/cobigen-javaplugin-1.4.0.jar,\
33+
lib/cobigen-jsonplugin-1.0.0.jar,\
34+
lib/cobigen-propertyplugin-1.1.1.jar,\
35+
lib/cobigen-senchaplugin-1.0.0.jar,\
36+
lib/cobigen-textmerger-1.1.0.jar,\
37+
lib/cobigen-xmlplugin-3.0.0.jar

cobigen-eclipse/cobigen-eclipse/pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>com.capgemini.cobigen.eclipse</artifactId>
66
<name>CobiGen - Eclipse Plug-In</name>
77
<packaging>eclipse-plugin</packaging>
8-
<version>2.0.0-SNAPSHOT</version>
8+
<version>2.0.0</version>
99

1010
<parent>
1111
<groupId>com.capgemini</groupId>
@@ -17,37 +17,37 @@
1717
<dependency>
1818
<groupId>com.capgemini</groupId>
1919
<artifactId>cobigen-core</artifactId>
20-
<version>3.0.0-SNAPSHOT</version>
20+
<version>3.0.0</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>com.capgemini</groupId>
2424
<artifactId>cobigen-xmlplugin</artifactId>
25-
<version>3.0.0-SNAPSHOT</version>
25+
<version>3.0.0</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>com.capgemini</groupId>
2929
<artifactId>cobigen-javaplugin</artifactId>
30-
<version>1.4.0-SNAPSHOT</version>
30+
<version>1.4.0</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>com.capgemini</groupId>
3434
<artifactId>cobigen-propertyplugin</artifactId>
35-
<version>1.1.0-SNAPSHOT</version>
35+
<version>1.1.1</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>com.capgemini</groupId>
3939
<artifactId>cobigen-textmerger</artifactId>
40-
<version>1.1.0-SNAPSHOT</version>
40+
<version>1.1.0</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.capgemini</groupId>
4444
<artifactId>cobigen-jsonplugin</artifactId>
45-
<version>1.0.0-SNAPSHOT</version>
45+
<version>1.0.0</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>com.capgemini</groupId>
4949
<artifactId>cobigen-senchaplugin</artifactId>
50-
<version>1.0.0-SNAPSHOT</version>
50+
<version>1.0.0</version>
5151
</dependency>
5252

5353
<dependency>

0 commit comments

Comments
 (0)