Skip to content

Commit 60c99c4

Browse files
committed
set new dev version to 3.0.0-SNAPSHOT and upgraded to JAXB 4.0.12
1 parent 787f01f commit 60c99c4

File tree

19 files changed

+45
-42
lines changed

19 files changed

+45
-42
lines changed

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.buschmais.xo</groupId>
55
<artifactId>xo.parent</artifactId>
6-
<version>2.7.0-SNAPSHOT</version>
6+
<version>3.0.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>xo.api</artifactId>
99

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.buschmais.xo</groupId>
55
<artifactId>xo.parent</artifactId>
6-
<version>2.7.0-SNAPSHOT</version>
6+
<version>3.0.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>xo.bom</artifactId>
99

doc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.buschmais.xo</groupId>
55
<artifactId>xo.parent</artifactId>
6-
<version>2.7.0-SNAPSHOT</version>
6+
<version>3.0.0-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>xo.doc</artifactId>

impl/pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.buschmais.xo</groupId>
55
<artifactId>xo.parent</artifactId>
6-
<version>2.7.0-SNAPSHOT</version>
6+
<version>3.0.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>xo.impl</artifactId>
99

@@ -24,8 +24,8 @@
2424
</resources>
2525
<plugins>
2626
<plugin>
27-
<groupId>org.jvnet.jaxb2.maven2</groupId>
28-
<artifactId>maven-jaxb2-plugin</artifactId>
27+
<groupId>org.jvnet.jaxb</groupId>
28+
<artifactId>jaxb-maven-plugin</artifactId>
2929
</plugin>
3030
</plugins>
3131
</build>
@@ -47,6 +47,10 @@
4747
<groupId>com.github.ben-manes.caffeine</groupId>
4848
<artifactId>caffeine</artifactId>
4949
</dependency>
50+
<dependency>
51+
<groupId>jakarta.xml.bind</groupId>
52+
<artifactId>jakarta.xml.bind-api</artifactId>
53+
</dependency>
5054
<dependency>
5155
<groupId>org.glassfish.jaxb</groupId>
5256
<artifactId>jaxb-runtime</artifactId>

impl/src/main/java/com/buschmais/xo/impl/bootstrap/XOUnitFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
import java.util.*;
99

1010
import javax.xml.XMLConstants;
11-
import javax.xml.bind.JAXBContext;
12-
import javax.xml.bind.JAXBException;
13-
import javax.xml.bind.Unmarshaller;
11+
import jakarta.xml.bind.JAXBContext;
12+
import jakarta.xml.bind.JAXBException;
13+
import jakarta.xml.bind.Unmarshaller;
1414
import javax.xml.transform.stream.StreamSource;
1515
import javax.xml.validation.Schema;
1616
import javax.xml.validation.SchemaFactory;

impl/src/main/java/com/buschmais/xo/impl/bootstrap/XOUnitValidationHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import java.util.ArrayList;
44
import java.util.List;
55

6-
import javax.xml.bind.ValidationEvent;
7-
import javax.xml.bind.ValidationEventHandler;
6+
import jakarta.xml.bind.ValidationEvent;
7+
import jakarta.xml.bind.ValidationEventHandler;
88

99
public class XOUnitValidationHandler implements ValidationEventHandler {
1010

impl/src/main/resources/META-INF/xsd/xo-1.0.xjb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<xjb:bindings xmlns:xjb="http://java.sun.com/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">
2+
<xjb:bindings xmlns:xjb="https://jakarta.ee/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="3.0">
33
<xjb:bindings schemaLocation="xo-1.0.xsd" node="/xs:schema">
44
<xjb:schemaBindings>
55
<xjb:package name="com.buschmais.xo.impl.schema.v1"/>

neo4j/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.buschmais.xo</groupId>
55
<artifactId>xo.neo4j</artifactId>
6-
<version>2.7.0-SNAPSHOT</version>
6+
<version>3.0.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>xo.neo4j.api</artifactId>
99

neo4j/doc/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.buschmais.xo</groupId>
55
<artifactId>xo.neo4j</artifactId>
6-
<version>2.7.0-SNAPSHOT</version>
6+
<version>3.0.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>xo.neo4j.doc</artifactId>
99

@@ -38,25 +38,25 @@
3838
<!-- For using an embedded Neo4j instance -->
3939
<groupId>com.buschmais.xo</groupId>
4040
<artifactId>xo.neo4j.embedded</artifactId>
41-
<version>2.7.0-SNAPSHOT</version>
41+
<version>3.0.0-SNAPSHOT</version>
4242
</dependency>
4343
<dependency>
4444
<!-- For using a remote Neo4j instance -->
4545
<groupId>com.buschmais.xo</groupId>
4646
<artifactId>xo.neo4j.remote</artifactId>
47-
<version>2.7.0-SNAPSHOT</version>
47+
<version>3.0.0-SNAPSHOT</version>
4848
</dependency>
4949
<dependency>
5050
<!-- The XO API -->
5151
<groupId>com.buschmais.xo</groupId>
5252
<artifactId>xo.api</artifactId>
53-
<version>2.7.0-SNAPSHOT</version>
53+
<version>3.0.0-SNAPSHOT</version>
5454
</dependency>
5555
<dependency>
5656
<!-- The XO runtime implementation -->
5757
<groupId>com.buschmais.xo</groupId>
5858
<artifactId>xo.impl</artifactId>
59-
<version>2.7.0-SNAPSHOT</version>
59+
<version>3.0.0-SNAPSHOT</version>
6060
<scope>runtime</scope>
6161
</dependency>
6262
<dependency>

neo4j/embedded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.buschmais.xo</groupId>
55
<artifactId>xo.neo4j</artifactId>
6-
<version>2.7.0-SNAPSHOT</version>
6+
<version>3.0.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>xo.neo4j.embedded</artifactId>
99

0 commit comments

Comments
 (0)