diff --git a/.gitignore b/.gitignore index 090978ee..4b7b9ce8 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ **/*.iml **/bin **/target +**/.vscode/ diff --git a/accessors-smart/pom.xml b/accessors-smart/pom.xml index 4360b5af..7e537d74 100644 --- a/accessors-smart/pom.xml +++ b/accessors-smart/pom.xml @@ -1,5 +1,5 @@ org.apache.maven.plugins maven-gpg-plugin - 1.6 + 3.2.7 sign-artifacts @@ -105,9 +106,10 @@ limitations under the License. + org.apache.maven.plugins maven-javadoc-plugin - 3.2.0 + 3.10.1 8 @@ -125,9 +127,10 @@ limitations under the License. to perform: mvn release:prepare release:perform Read http://nexus.sonatype.org/oss-repository-hosting.html#3 for instructions on releasing to this project's Sonatype repository --> + org.apache.maven.plugins maven-release-plugin - 3.0.1 + 3.1.1 forked-path -Psonatype-oss-release @@ -159,9 +162,10 @@ limitations under the License. + org.apache.maven.plugins maven-source-plugin - 3.2.1 + 3.3.1 bind-sources @@ -172,9 +176,10 @@ limitations under the License. + org.apache.maven.plugins maven-compiler-plugin - 3.8.1 + 3.13.0 UTF-8 ${maven.compiler.source} @@ -182,22 +187,25 @@ limitations under the License. + org.apache.maven.plugins maven-resources-plugin - 3.2.0 + 3.3.1 UTF-8 + org.apache.maven.plugins maven-jar-plugin - 3.2.0 + 3.4.2 + org.apache.maven.plugins maven-javadoc-plugin - 3.2.0 + 3.10.1 8 @@ -214,9 +222,10 @@ limitations under the License. + org.apache.felix maven-bundle-plugin - 5.1.2 + 5.1.9 true @@ -239,14 +248,14 @@ limitations under the License. org.junit.jupiter junit-jupiter-api - 5.10.0 + 5.11.2 test org.ow2.asm asm - 9.6 + 9.7.1 diff --git a/accessors-smart/src/main/java/net/minidev/asm/ASMUtil.java b/accessors-smart/src/main/java/net/minidev/asm/ASMUtil.java index 1fe5b02f..23ec7938 100644 --- a/accessors-smart/src/main/java/net/minidev/asm/ASMUtil.java +++ b/accessors-smart/src/main/java/net/minidev/asm/ASMUtil.java @@ -1,7 +1,7 @@ package net.minidev.asm; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/accessors-smart/src/main/java/net/minidev/asm/Accessor.java b/accessors-smart/src/main/java/net/minidev/asm/Accessor.java index 710c85c2..0c1b59a8 100644 --- a/accessors-smart/src/main/java/net/minidev/asm/Accessor.java +++ b/accessors-smart/src/main/java/net/minidev/asm/Accessor.java @@ -1,7 +1,7 @@ package net.minidev.asm; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/accessors-smart/src/main/java/net/minidev/asm/BeansAccess.java b/accessors-smart/src/main/java/net/minidev/asm/BeansAccess.java index f0aa2987..4789da52 100644 --- a/accessors-smart/src/main/java/net/minidev/asm/BeansAccess.java +++ b/accessors-smart/src/main/java/net/minidev/asm/BeansAccess.java @@ -1,7 +1,7 @@ package net.minidev.asm; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/accessors-smart/src/main/java/net/minidev/asm/DynamicClassLoader.java b/accessors-smart/src/main/java/net/minidev/asm/DynamicClassLoader.java index 589629b8..a1076e32 100644 --- a/accessors-smart/src/main/java/net/minidev/asm/DynamicClassLoader.java +++ b/accessors-smart/src/main/java/net/minidev/asm/DynamicClassLoader.java @@ -1,7 +1,7 @@ package net.minidev.asm; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart-action/pom.xml b/json-smart-action/pom.xml index 83b975ca..79fc9009 100644 --- a/json-smart-action/pom.xml +++ b/json-smart-action/pom.xml @@ -16,7 +16,7 @@ uriel Uriel Chemouni uchemouni@gmail.com - GMT+3 + GMT+1 erav @@ -44,7 +44,7 @@ 10 1.8 1.8 - 5.11.1 + 5.11.2 scm:git:https://github.com/netplex/json-smart-v2.git @@ -97,9 +97,10 @@ + org.apache.maven.plugins maven-javadoc-plugin - 3.10.0 + 3.10.1 8 @@ -117,6 +118,7 @@ to perform: mvn release:prepare release:perform Read http://nexus.sonatype.org/oss-repository-hosting.html#3 for instructions on releasing to this project's Sonatype repository --> + org.apache.maven.plugins maven-release-plugin 3.1.1 @@ -151,6 +153,7 @@ + org.apache.maven.plugins maven-source-plugin 3.3.1 @@ -164,6 +167,7 @@ + org.apache.maven.plugins maven-compiler-plugin 3.13.0 @@ -174,6 +178,7 @@ + org.apache.maven.plugins maven-resources-plugin 3.3.1 @@ -182,14 +187,16 @@ + org.apache.maven.plugins maven-jar-plugin 3.4.2 + org.apache.maven.plugins maven-javadoc-plugin - 3.10.0 + 3.10.1 8 diff --git a/json-smart/pom.xml b/json-smart/pom.xml index cb24b4b1..967220db 100644 --- a/json-smart/pom.xml +++ b/json-smart/pom.xml @@ -1,5 +1,5 @@ org.apache.maven.plugins maven-gpg-plugin 3.2.7 @@ -112,9 +113,10 @@ limitations under the License. + org.apache.maven.plugins maven-javadoc-plugin - 3.10.0 + 3.10.1 8 @@ -132,9 +134,10 @@ limitations under the License. to perform: mvn release:prepare release:perform Read http://nexus.sonatype.org/oss-repository-hosting.html#3 for instructions on releasing to this project's Sonatype repository --> + org.apache.maven.plugins maven-release-plugin - 3.1.1 + 3.1.1 forked-path -Psonatype-oss-release @@ -166,6 +169,7 @@ limitations under the License. + org.apache.maven.plugins maven-source-plugin 3.3.1 @@ -179,6 +183,7 @@ limitations under the License. + org.apache.maven.plugins maven-compiler-plugin 3.13.0 @@ -189,6 +194,7 @@ limitations under the License. + org.apache.maven.plugins maven-resources-plugin 3.3.1 @@ -197,14 +203,16 @@ limitations under the License. + org.apache.maven.plugins maven-jar-plugin 3.4.2 + org.apache.maven.plugins maven-javadoc-plugin - 3.10.0 + 3.10.1 8 @@ -221,6 +229,7 @@ limitations under the License. + org.apache.felix maven-bundle-plugin 5.1.9 diff --git a/json-smart/src/main/java/net/minidev/json/JSONArray.java b/json-smart/src/main/java/net/minidev/json/JSONArray.java index 4fea7aee..b9c9a23d 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONArray.java +++ b/json-smart/src/main/java/net/minidev/json/JSONArray.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONAware.java b/json-smart/src/main/java/net/minidev/json/JSONAware.java index 33b0eede..459fed3c 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONAware.java +++ b/json-smart/src/main/java/net/minidev/json/JSONAware.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONAwareEx.java b/json-smart/src/main/java/net/minidev/json/JSONAwareEx.java index b2620538..9ae56ffc 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONAwareEx.java +++ b/json-smart/src/main/java/net/minidev/json/JSONAwareEx.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONNavi.java b/json-smart/src/main/java/net/minidev/json/JSONNavi.java index 68fc4656..242ffca0 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONNavi.java +++ b/json-smart/src/main/java/net/minidev/json/JSONNavi.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONObject.java b/json-smart/src/main/java/net/minidev/json/JSONObject.java index 84e8c149..21d3f891 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONObject.java +++ b/json-smart/src/main/java/net/minidev/json/JSONObject.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONStreamAware.java b/json-smart/src/main/java/net/minidev/json/JSONStreamAware.java index 0d96794d..1575093a 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONStreamAware.java +++ b/json-smart/src/main/java/net/minidev/json/JSONStreamAware.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONStreamAwareEx.java b/json-smart/src/main/java/net/minidev/json/JSONStreamAwareEx.java index 4f75f1ba..5e17d5bb 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONStreamAwareEx.java +++ b/json-smart/src/main/java/net/minidev/json/JSONStreamAwareEx.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONStyle.java b/json-smart/src/main/java/net/minidev/json/JSONStyle.java index 3517f8f0..2609e04f 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONStyle.java +++ b/json-smart/src/main/java/net/minidev/json/JSONStyle.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONUtil.java b/json-smart/src/main/java/net/minidev/json/JSONUtil.java index 33209853..0edb21d2 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONUtil.java +++ b/json-smart/src/main/java/net/minidev/json/JSONUtil.java @@ -7,7 +7,7 @@ import net.minidev.json.annotate.JsonIgnore; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JSONValue.java b/json-smart/src/main/java/net/minidev/json/JSONValue.java index 276e5ba1..567b6352 100644 --- a/json-smart/src/main/java/net/minidev/json/JSONValue.java +++ b/json-smart/src/main/java/net/minidev/json/JSONValue.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/JStylerObj.java b/json-smart/src/main/java/net/minidev/json/JStylerObj.java index 3b8d0592..b8685714 100644 --- a/json-smart/src/main/java/net/minidev/json/JStylerObj.java +++ b/json-smart/src/main/java/net/minidev/json/JStylerObj.java @@ -1,7 +1,7 @@ package net.minidev.json; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParser.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParser.java index 50daf9fb..7a46065d 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParser.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParser.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParserBase.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParserBase.java index 2f00d265..f839e780 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParserBase.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParserBase.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParserByteArray.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParserByteArray.java index bafcc987..47f0fd7d 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParserByteArray.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParserByteArray.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParserInputStream.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParserInputStream.java index 7a1fb89b..77d93e96 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParserInputStream.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParserInputStream.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParserMemory.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParserMemory.java index bece6aee..b070ed20 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParserMemory.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParserMemory.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParserReader.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParserReader.java index 9e90f7c9..b33341c9 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParserReader.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParserReader.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParserStream.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParserStream.java index 737ea97b..53f83c61 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParserStream.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParserStream.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/JSONParserString.java b/json-smart/src/main/java/net/minidev/json/parser/JSONParserString.java index d792a224..98420e48 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/JSONParserString.java +++ b/json-smart/src/main/java/net/minidev/json/parser/JSONParserString.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/parser/ParseException.java b/json-smart/src/main/java/net/minidev/json/parser/ParseException.java index 5f810213..2b8d06da 100644 --- a/json-smart/src/main/java/net/minidev/json/parser/ParseException.java +++ b/json-smart/src/main/java/net/minidev/json/parser/ParseException.java @@ -1,7 +1,7 @@ package net.minidev.json.parser; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/ArraysMapper.java b/json-smart/src/main/java/net/minidev/json/writer/ArraysMapper.java index ed0ae57e..66312cae 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/ArraysMapper.java +++ b/json-smart/src/main/java/net/minidev/json/writer/ArraysMapper.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/BeansMapper.java b/json-smart/src/main/java/net/minidev/json/writer/BeansMapper.java index 12fc669c..4eb0b548 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/BeansMapper.java +++ b/json-smart/src/main/java/net/minidev/json/writer/BeansMapper.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/CollectionMapper.java b/json-smart/src/main/java/net/minidev/json/writer/CollectionMapper.java index 25416fae..09e24037 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/CollectionMapper.java +++ b/json-smart/src/main/java/net/minidev/json/writer/CollectionMapper.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/CompessorMapper.java b/json-smart/src/main/java/net/minidev/json/writer/CompessorMapper.java index 4c882788..c23edabe 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/CompessorMapper.java +++ b/json-smart/src/main/java/net/minidev/json/writer/CompessorMapper.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperCollection.java b/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperCollection.java index 25891351..975df91d 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperCollection.java +++ b/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperCollection.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperOrdered.java b/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperOrdered.java index f1492c05..5cca8b27 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperOrdered.java +++ b/json-smart/src/main/java/net/minidev/json/writer/DefaultMapperOrdered.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/FakeMapper.java b/json-smart/src/main/java/net/minidev/json/writer/FakeMapper.java index 91d974ee..504df3b0 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/FakeMapper.java +++ b/json-smart/src/main/java/net/minidev/json/writer/FakeMapper.java @@ -2,7 +2,7 @@ /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/JsonReader.java b/json-smart/src/main/java/net/minidev/json/writer/JsonReader.java index 42205db9..982b507c 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/JsonReader.java +++ b/json-smart/src/main/java/net/minidev/json/writer/JsonReader.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/json-smart/src/main/java/net/minidev/json/writer/JsonReaderI.java b/json-smart/src/main/java/net/minidev/json/writer/JsonReaderI.java index 11fe2f8c..b6a529d0 100644 --- a/json-smart/src/main/java/net/minidev/json/writer/JsonReaderI.java +++ b/json-smart/src/main/java/net/minidev/json/writer/JsonReaderI.java @@ -1,7 +1,7 @@ package net.minidev.json.writer; /* - * Copyright 2011-2023 JSON-SMART authors + * Copyright 2011-2024 JSON-SMART authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.