Skip to content

Commit

Permalink
update version and dates. (#220)
Browse files Browse the repository at this point in the history
- add links to mvnrepository.com in all poms.
- update depencency versions.
- update copyright years.
  • Loading branch information
UrielCh authored Oct 7, 2024
1 parent 0ca9538 commit 833c5bd
Show file tree
Hide file tree
Showing 37 changed files with 82 additions and 56 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
**/*.iml
**/bin
**/target
**/.vscode/
35 changes: 22 additions & 13 deletions accessors-smart/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
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.
Expand Down Expand Up @@ -31,7 +31,7 @@ limitations under the License.
<id>uriel</id>
<name>Uriel Chemouni</name>
<email>[email protected]</email>
<timezone>GMT+3</timezone>
<timezone>GMT+1</timezone>
</developer>
<developer>
<id>shoothzj</id>
Expand Down Expand Up @@ -90,9 +90,10 @@ limitations under the License.
<build>
<plugins>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -105,9 +106,10 @@ limitations under the License.
</plugin>
<!-- Publish also javadocs when releasing - required by Sonatype -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.10.1</version>
<configuration>
<source>8</source>
</configuration>
Expand All @@ -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 -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<arguments>-Psonatype-oss-release</arguments>
Expand Down Expand Up @@ -159,9 +162,10 @@ limitations under the License.
<build>
<plugins>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<version>3.3.1</version>
<executions>
<execution>
<id>bind-sources</id>
Expand All @@ -172,32 +176,36 @@ limitations under the License.
</executions>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.13.0</version>
<configuration>
<encoding>UTF-8</encoding>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.1</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.4.2</version>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.10.1</version>
<!-- ONLY NEEDED With jdk 1.7+ -->
<configuration>
<source>8</source>
Expand All @@ -214,9 +222,10 @@ limitations under the License.
</executions>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.felix/maven-bundle-plugin -->
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.2</version> <!-- 3.0.0 need java 7+ -->
<version>5.1.9</version> <!-- 3.0.0 need java 7+ -->
<extensions>true</extensions>
<configuration>
<instructions>
Expand All @@ -239,14 +248,14 @@ limitations under the License.
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<version>5.11.2</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.6</version>
<version>9.7.1</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion accessors-smart/src/main/java/net/minidev/asm/ASMUtil.java
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
15 changes: 11 additions & 4 deletions json-smart-action/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<id>uriel</id>
<name>Uriel Chemouni</name>
<email>[email protected]</email>
<timezone>GMT+3</timezone>
<timezone>GMT+1</timezone>
</developer>
<developer>
<id>erav</id>
Expand Down Expand Up @@ -44,7 +44,7 @@
<project.build.outputTimestamp>10</project.build.outputTimestamp>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>5.11.1</junit.version>
<junit.version>5.11.2</junit.version>
</properties>
<scm>
<connection>scm:git:https://github.com/netplex/json-smart-v2.git</connection>
Expand Down Expand Up @@ -97,9 +97,10 @@
</plugin>
<!-- Publish also javadocs when releasing - required by Sonatype -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
<version>3.10.1</version>
<configuration>
<source>8</source>
</configuration>
Expand All @@ -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 -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
Expand Down Expand Up @@ -151,6 +153,7 @@
<build>
<plugins>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
Expand All @@ -164,6 +167,7 @@
</executions>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
Expand All @@ -174,6 +178,7 @@
</configuration>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
Expand All @@ -182,14 +187,16 @@
</configuration>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
<version>3.10.1</version>
<!-- ONLY NEEDED With jdk 1.7+ -->
<configuration>
<source>8</source>
Expand Down
21 changes: 15 additions & 6 deletions json-smart/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
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.
Expand Down Expand Up @@ -31,7 +31,7 @@ limitations under the License.
<id>uriel</id>
<name>Uriel Chemouni</name>
<email>[email protected]</email>
<timezone>GMT+3</timezone>
<timezone>GMT+1</timezone>
</developer>
<developer>
<id>erav</id>
Expand Down Expand Up @@ -59,7 +59,7 @@ limitations under the License.
<project.build.outputTimestamp>10</project.build.outputTimestamp>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>5.11.1</junit.version>
<junit.version>5.11.2</junit.version>
</properties>
<scm>
<connection>scm:git:https://github.com/netplex/json-smart-v2.git</connection>
Expand Down Expand Up @@ -97,6 +97,7 @@ limitations under the License.
<build>
<plugins>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
Expand All @@ -112,9 +113,10 @@ limitations under the License.
</plugin>
<!-- Publish also javadocs when releasing - required by Sonatype -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
<version>3.10.1</version>
<configuration>
<source>8</source>
</configuration>
Expand All @@ -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 -->
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<arguments>-Psonatype-oss-release</arguments>
Expand Down Expand Up @@ -166,6 +169,7 @@ limitations under the License.
<build>
<plugins>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
Expand All @@ -179,6 +183,7 @@ limitations under the License.
</executions>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
Expand All @@ -189,6 +194,7 @@ limitations under the License.
</configuration>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
Expand All @@ -197,14 +203,16 @@ limitations under the License.
</configuration>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-jar-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.10.0</version>
<version>3.10.1</version>
<!-- ONLY NEEDED With jdk 1.7+ -->
<configuration>
<source>8</source>
Expand All @@ -221,6 +229,7 @@ limitations under the License.
</executions>
</plugin>
<plugin>
<!-- https://mvnrepository.com/artifact/org.apache.felix/maven-bundle-plugin -->
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.9</version>
Expand Down
2 changes: 1 addition & 1 deletion json-smart/src/main/java/net/minidev/json/JSONArray.java
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion json-smart/src/main/java/net/minidev/json/JSONAware.java
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion json-smart/src/main/java/net/minidev/json/JSONAwareEx.java
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion json-smart/src/main/java/net/minidev/json/JSONNavi.java
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Loading

0 comments on commit 833c5bd

Please sign in to comment.