Skip to content

Commit

Permalink
updated build dependencies and changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Sep 29, 2024
1 parent 5cc3f54 commit a84eda1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
### Revision History
#### 2.14.0
> * Updated build plug-in dependencies.
#### 2.13.0
> * `LRUCache` improved garbage collection handling to avoid [gc Nepotism](https://psy-lob-saw.blogspot.com/2016/03/gc-nepotism-and-linked-queues.html?lr=1719181314858) issues by nulling out node references upon eviction. Pointed out by [Ben Manes](https://github.com/ben-manes).
> * Combined `ForkedJoinPool` and `ScheduledExecutorService` into use of only `ScheduledExecutorServive,` which is easier for user. The user can supply `null` or their own scheduler. In the case of `null`, one will be created and the `shutdown()` method will terminate it. If the user supplies a `ScheduledExecutorService` it will be *used*, but not shutdown when the `shutdown()` method is called. This allows `LRUCache` to work well in containerized environments.
Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.cedarsoftware</groupId>
<artifactId>java-util</artifactId>
<packaging>bundle</packaging>
<version>2.13.0</version>
<version>2.14.0-SNAPSHOT</version>
<description>Java Utilities</description>
<url>https://github.com/jdereg/java-util</url>

Expand Down Expand Up @@ -33,23 +33,23 @@
<maven.compiler.release>8</maven.compiler.release>

<!-- testing only -->
<version.junit-jupiter-api>5.10.2</version.junit-jupiter-api>
<version.junit-jupiter-params>5.10.2</version.junit-jupiter-params>
<version.junit-jupiter-api>5.11.1</version.junit-jupiter-api>
<version.junit-jupiter-params>5.11.1</version.junit-jupiter-params>
<version.mockito-junit-jupiter>4.11.0</version.mockito-junit-jupiter>
<version.assertj-core>3.26.0</version.assertj-core>
<version.json-io>4.25.0</version.json-io>
<version.agrona>1.21.2</version.agrona>
<version.assertj-core>3.26.3</version.assertj-core>
<version.json-io>4.26.0</version.json-io>
<version.agrona>1.23.0</version.agrona>

<!-- Build maven-***-plugins -->
<version.maven-jar-plugin>3.4.2</version.maven-jar-plugin>
<version.maven-gpg-plugin>3.2.4</version.maven-gpg-plugin>
<version.maven-gpg-plugin>3.2.7</version.maven-gpg-plugin>
<version.maven-compiler-plugin>3.13.0</version.maven-compiler-plugin>
<version.maven-javadoc-plugin>3.7.0</version.maven-javadoc-plugin>
<version.maven-surefire-plugin>3.3.0</version.maven-surefire-plugin>
<version.maven-javadoc-plugin>3.10.0</version.maven-javadoc-plugin>
<version.maven-surefire-plugin>3.5.0</version.maven-surefire-plugin>
<version.maven-source-plugin>3.3.1</version.maven-source-plugin>
<version.maven-scr-plugin>1.26.4</version.maven-scr-plugin>
<version.maven-bundle-plugin>5.1.9</version.maven-bundle-plugin>
<version.moditect-maven-plugin>1.2.1.Final</version.moditect-maven-plugin>
<version.moditect-maven-plugin>1.2.2.Final</version.moditect-maven-plugin>

<!-- release to Maven Central via Sonatype Nexus -->
<version.nexus-staging-maven-plugin>1.7.0</version.nexus-staging-maven-plugin>
Expand Down

0 comments on commit a84eda1

Please sign in to comment.