Skip to content

Commit

Permalink
require javax.xml as static/optional dependency and fix copyright
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Schindl <[email protected]>
  • Loading branch information
tomsontom committed Jun 9, 2021
1 parent 2bd05d6 commit 84817bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand All @@ -14,7 +14,7 @@
requires jakarta.json;
requires jakarta.json.bind;
requires java.logging;
requires java.xml;
requires static java.xml;
requires static java.naming;
requires static java.sql;
requires static java.desktop;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down Expand Up @@ -140,9 +140,11 @@ private static Map<Class<?>, SerializerProviderWrapper> initSerializers() {
new SerializerProviderWrapper(BigDecimalTypeSerializer::new, BigDecimalTypeDeserializer::new));
serializers.put(ZoneOffset.class,
new SerializerProviderWrapper(ZoneOffsetTypeSerializer::new, ZoneOffsetTypeDeserializer::new));
serializers.put(XMLGregorianCalendar.class,
new SerializerProviderWrapper(XMLGregorianCalendarTypeSerializer::new,
XMLGregorianCalendarTypeDeserializer::new));
if(isClassAvailable("javax.xml.datatype.XMLGregorianCalendar")) {
serializers.put(XMLGregorianCalendar.class,
new SerializerProviderWrapper(XMLGregorianCalendarTypeSerializer::new,
XMLGregorianCalendarTypeDeserializer::new));
}

return serializers;
}
Expand Down

0 comments on commit 84817bb

Please sign in to comment.