Skip to content

Commit 47bcb8f

Browse files
Starting 0.14.0-SNAPSHOT, updating JDK baseline to JDK 17, switching to Apache Jena 5
1 parent b926a61 commit 47bcb8f

8 files changed

Lines changed: 28 additions & 28 deletions

File tree

generator/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
<parent>
2424
<groupId>org.odftoolkit</groupId>
2525
<artifactId>odftoolkit</artifactId>
26-
<version>0.13.0</version>
26+
<version>0.14.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<!-- The Basics -->
3030
<artifactId>schema2template-pom</artifactId>
31-
<version>0.13.0</version>
31+
<version>0.14.0-SNAPSHOT</version>
3232
<packaging>pom</packaging>
3333

3434
<properties>
@@ -118,7 +118,7 @@
118118
<connection>scm:git:git://github.com/tdf/odftoolkit.git</connection>
119119
<developerConnection>scm:git:git@github.com:tdf/odftoolkit.git</developerConnection>
120120
<url>https://github.com/tdf/odftoolkit/tree/trunk/generator</url>
121-
<tag>odftoolkit-0.13.0</tag>
121+
<tag>odftoolkit-0.14.0-SNAPSHOT</tag>
122122
</scm>
123123

124124
<profiles>

generator/schema2template-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
<parent>
2525
<groupId>org.odftoolkit</groupId>
2626
<artifactId>schema2template-pom</artifactId>
27-
<version>0.13.0</version>
27+
<version>0.14.0-SNAPSHOT</version>
2828
</parent>
2929

3030
<!-- The Basics -->
3131
<name>XML Schema to Template Mapping Tool: Maven Plugin</name>
3232
<artifactId>schema2template-maven-plugin</artifactId>
3333
<description>Maven Plugin for XML Schema to Template Mapping Tool</description>
34-
<version>0.13.0</version>
34+
<version>0.14.0-SNAPSHOT</version>
3535
<packaging>maven-plugin</packaging>
3636
<properties>
3737
<maven.version>3.9.12</maven.version>

generator/schema2template/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
<parent>
2525
<groupId>org.odftoolkit</groupId>
2626
<artifactId>schema2template-pom</artifactId>
27-
<version>0.13.0</version>
27+
<version>0.14.0-SNAPSHOT</version>
2828
</parent>
2929

3030
<!-- The Basics -->
3131
<artifactId>schema2template</artifactId>
32-
<version>0.13.0</version>
32+
<version>0.14.0-SNAPSHOT</version>
3333
<packaging>jar</packaging>
3434
<dependencies>
3535
<dependency>

odfdom/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<parent>
2525
<groupId>org.odftoolkit</groupId>
2626
<artifactId>odftoolkit</artifactId>
27-
<version>0.13.0</version>
27+
<version>0.14.0-SNAPSHOT</version>
2828
</parent>
2929

3030
<artifactId>odfdom-java</artifactId>
31-
<version>0.13.0</version>
31+
<version>0.14.0-SNAPSHOT</version>
3232
<packaging>jar</packaging>
3333

3434
<dependencies>
@@ -148,7 +148,7 @@
148148
<plugin>
149149
<groupId>org.apache.felix</groupId>
150150
<artifactId>maven-bundle-plugin</artifactId>
151-
<version>5.1.9</version>
151+
<version>6.0.0</version>
152152
<executions>
153153
<execution>
154154
<id>bundle-manifest</id>
@@ -380,7 +380,7 @@
380380
<connection>scm:git:git://github.com/tdf/odftoolkit.git</connection>
381381
<developerConnection>scm:git:git@github.com:tdf/odftoolkit.git</developerConnection>
382382
<url>https://github.com/tdf/odftoolkit/tree/trunk/odfdom</url>
383-
<tag>odftoolkit-0.13.0</tag>
383+
<tag>odftoolkit-0.14.0-SNAPSHOT</tag>
384384
</scm>
385385
<profiles>
386386
<profile>

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222
<groupId>org.odftoolkit</groupId>
2323
<artifactId>odftoolkit</artifactId>
24-
<version>0.13.0</version>
24+
<version>0.14.0-SNAPSHOT</version>
2525
<packaging>pom</packaging>
2626
<parent>
2727
<groupId>org.apache</groupId>
@@ -34,10 +34,10 @@
3434
<javadoc.bottom>Copyright © {inceptionYear}–2018 Apache Software Foundation; Copyright © 2018–${currentYear} {organizationName}. All rights reserved.</javadoc.bottom>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3636
<!-- explicitly setting JDK version for compiler source & target -->
37-
<jdk.version>11</jdk.version>
37+
<jdk.version>17</jdk.version>
3838
<!-- all three JDK versions should not differ -->
39-
<maven.compiler.source>11</maven.compiler.source>
40-
<maven.compiler.target>11</maven.compiler.target>
39+
<maven.compiler.source>17</maven.compiler.source>
40+
<maven.compiler.target>17</maven.compiler.target>
4141
<!-- ANT driven release bundle creation: 3 ZIPs for the complete Toolkit for binaries, documentation and sources -->
4242
<release.dir>${basedir}/target/release</release.dir>
4343
<release.dir.bin>${release.dir}/${project.version}/binaries</release.dir.bin>
@@ -102,14 +102,14 @@
102102
<dependency>
103103
<groupId>org.apache.jena</groupId>
104104
<artifactId>jena-core</artifactId>
105-
<version>4.10.0</version>
105+
<version>5.6.0</version>
106106
</dependency>
107107
<!-- used by ODFDOM for metadata -->
108108
<dependency>
109109
<groupId>org.apache.jena</groupId>
110110
<artifactId>jena-core</artifactId>
111111
<classifier>tests</classifier>
112-
<version>4.10.0</version>
112+
<version>5.6.0</version>
113113
</dependency>
114114
<!-- used by schema2template for XML grammar to graph functionality -->
115115
<dependency>
@@ -217,7 +217,7 @@
217217
<connection>scm:git:git://github.com/tdf/odftoolkit.git</connection>
218218
<developerConnection>scm:git:git@github.com:tdf/odftoolkit.git</developerConnection>
219219
<url>https://github.com/tdf/odftoolkit.git</url>
220-
<tag>odftoolkit-0.13.0</tag>
220+
<tag>odftoolkit-0.14.0-SNAPSHOT</tag>
221221
</scm>
222222
<issueManagement>
223223
<system>GitHub Issues</system>

taglets/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
<parent>
2525
<groupId>org.odftoolkit</groupId>
2626
<artifactId>odftoolkit</artifactId>
27-
<version>0.13.0</version>
27+
<version>0.14.0-SNAPSHOT</version>
2828
</parent>
2929

3030
<artifactId>taglets</artifactId>
31-
<version>0.13.0</version>
31+
<version>0.14.0-SNAPSHOT</version>
3232
<packaging>jar</packaging>
3333

3434
<properties>
@@ -123,7 +123,7 @@
123123
<connection>scm:git:git://github.com/tdf/odftoolkit.git</connection>
124124
<developerConnection>scm:git:git@github.com:tdf/odftoolkit.git</developerConnection>
125125
<url>https://github.com/tdf/odftoolkit/tree/trunk/taglets</url>
126-
<tag>odftoolkit-0.13.0</tag>
126+
<tag>odftoolkit-0.14.0-SNAPSHOT</tag>
127127
</scm>
128128
<profiles>
129129
<profile>

validator/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
<parent>
2525
<groupId>org.odftoolkit</groupId>
2626
<artifactId>odftoolkit</artifactId>
27-
<version>0.13.0</version>
27+
<version>0.14.0-SNAPSHOT</version>
2828
</parent>
2929
<artifactId>odfvalidator</artifactId>
30-
<version>0.13.0</version>
30+
<version>0.14.0-SNAPSHOT</version>
3131
<packaging>war</packaging>
3232

3333
<dependencies>
3434
<dependency>
3535
<groupId>${project.groupId}</groupId>
3636
<artifactId>odfdom-java</artifactId>
37-
<version>0.13.0</version>
37+
<version>0.14.0-SNAPSHOT</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>commons-fileupload</groupId>
@@ -319,7 +319,7 @@
319319
<connection>scm:git:git://github.com/tdf/odftoolkit.git</connection>
320320
<developerConnection>scm:git:git@github.com:tdf/odftoolkit.git</developerConnection>
321321
<url>https://github.com/tdf/odftoolkit/tree/trunk/validator</url>
322-
<tag>odftoolkit-0.13.0</tag>
322+
<tag>odftoolkit-0.14.0-SNAPSHOT</tag>
323323
</scm>
324324
<profiles>
325325
<profile>

xslt-runner/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
<parent>
2323
<groupId>org.odftoolkit</groupId>
2424
<artifactId>odftoolkit</artifactId>
25-
<version>0.13.0</version>
25+
<version>0.14.0-SNAPSHOT</version>
2626
</parent>
2727

2828
<artifactId>xslt-runner</artifactId>
2929
<name>ODF XSLT-Runner</name>
30-
<version>0.13.0</version>
30+
<version>0.14.0-SNAPSHOT</version>
3131

3232
<organization>
3333
<name>The Document Foundation</name>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>${project.groupId}</groupId>
5555
<artifactId>odfdom-java</artifactId>
56-
<version>0.13.0</version>
56+
<version>0.14.0-SNAPSHOT</version>
5757
</dependency>
5858
<dependency>
5959
<!-- a reliable XSLT processor -->

0 commit comments

Comments
 (0)