Skip to content

Commit 1d5bea9

Browse files
committed
Version 2.0.0.
1 parent a508c23 commit 1d5bea9

File tree

20 files changed

+35
-24
lines changed

20 files changed

+35
-24
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.settings
1+
.settings
2+
target

compiler/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

demos/po/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-demos</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

demos/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<distributionManagement>

demos/wms/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-demos</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

docs/Jsonix.pdf

396 Bytes
Binary file not shown.

full/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

nodejs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modules>

nodejs/scripts/pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
12+
<dependencies>
13+
<dependency>
14+
<groupId>${project.groupId}</groupId>
15+
<artifactId>jsonix-schema-compiler-full</artifactId>
16+
</dependency>
17+
</dependencies>
1218
<build>
1319
<plugins>
1420
<plugin>

nodejs/tests/basic/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs-tests</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

nodejs/tests/po/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-nodejs-tests</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

nodejs/tests/pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<artifactId>jsonix-nodejs-tests</artifactId>
54
<packaging>pom</packaging>
65
<name>Jsonix Node.js Tests</name>
76
<parent>
87
<groupId>org.hisrc.jsonix</groupId>
98
<artifactId>jsonix-nodejs</artifactId>
10-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1110
<relativePath>../pom.xml</relativePath>
1211
</parent>
1312
<modules>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>org.hisrc.jsonix</groupId>
44
<artifactId>jsonix-project</artifactId>
55
<packaging>pom</packaging>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0</version>
77
<name>Jsonix</name>
88
<url>http://static.highsource.org/jsonix/</url>
99
<parent>

release.bat

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
call mvn clean install
2-
call mvn release:prepare
3-
call mvn release:perform
1+
call mvn --batch-mode release:update-versions -DdevelopmentVersion=%1
2+
call mvn clean install -DperformRelease
3+
rem -Psamples -Ptests -Pdist
4+
call mvn scm:commit -M="Version %1"
5+
call mvn scm:tag -Dtag=%1
6+
call mvn -DperformRelease -Psonatype-oss-release clean deploy
7+
rem -Psamples -Ptests -Pdist
8+
call mvn --batch-mode release:update-versions -DdevelopmentVersion=%2

samples/po/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.hisrc.jsonix</groupId>
99
<artifactId>jsonix-samples</artifactId>
10-
<version>2.0.0-SNAPSHOT</version>
10+
<version>2.0.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<dependencies>
@@ -17,7 +17,7 @@
1717
</dependency>
1818
<dependency>
1919
<groupId>org.hisrc.jsonix</groupId>
20-
<artifactId>jsonix</artifactId>
20+
<artifactId>jsonix-schema-compiler</artifactId>
2121
</dependency>
2222
<dependency>
2323
<groupId>org.hisrc.jsonix</groupId>

samples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.hisrc.jsonix</groupId>
99
<artifactId>jsonix-project</artifactId>
10-
<version>2.0.0-SNAPSHOT</version>
10+
<version>2.0.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<distributionManagement>

samples/src/main/assembly/ant-src.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependencySet>
2828
<outputDirectory>lib</outputDirectory>
2929
<includes>
30-
<include>org.hisrc.jsonix:jsonix</include>
30+
<include>org.hisrc.jsonix:jsonix-schema-compiler</include>
3131
<include>com.sun.xml.bind:jaxb-impl</include>
3232
<include>com.sun.xml.bind:jaxb-xjc</include>
3333
<include>org.jvnet.jaxb2_commons:jaxb2-basics-ant</include>

scripts/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-project</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modules>

tests/zero/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.hisrc.jsonix</groupId>
88
<artifactId>jsonix-tests</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>

0 commit comments

Comments
 (0)