From 4f06c3a1ef1436ea9ce12465c915deb2ef57e467 Mon Sep 17 00:00:00 2001 From: Chris Vest Date: Sun, 7 Jun 2020 23:27:52 +0200 Subject: [PATCH 1/3] Update version in readme --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 4ebe15cb..2778f760 100644 --- a/README.adoc +++ b/README.adoc @@ -77,7 +77,7 @@ Add it as a Maven dependency to your projects: com.github.chrisvest stormpot - 3.0 + 3.1 ---- From a169b5862c51e2475a9ee48f05d8aa10a07252c8 Mon Sep 17 00:00:00 2001 From: Chris Vest Date: Sun, 7 Jun 2020 23:31:04 +0200 Subject: [PATCH 2/3] More readme updates --- README.adoc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.adoc b/README.adoc index 2778f760..17520acc 100644 --- a/README.adoc +++ b/README.adoc @@ -69,7 +69,7 @@ We recommend https://github.com/ben-manes/caffeine[Caffeine] for object caching. === Installing -Stormpot 3.0 only depends on Java 11 or newer. +Stormpot 3.1 only depends on Java 11 or newer. Add it as a Maven dependency to your projects: [source,xml] @@ -82,8 +82,6 @@ Add it as a Maven dependency to your projects: ---- You can also build the latest snapshot from source with `mvn clean install`. -Note that the next version, Stormpot 3.0, will require Java 11, so you need this -version of Java to build a snapshot from the source code. === Getting Started From 52deaed061cd7f8aaf5565c2c552adc531038f6b Mon Sep 17 00:00:00 2001 From: "Bruno E. Grossi" Date: Fri, 29 Jan 2021 11:10:14 -0300 Subject: [PATCH 3/3] Solution to compile stormpot with GraalVM. --- .../com.github.chrisvest/stormpot/native-image.properties | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/main/resources/META-INF/native-image/com.github.chrisvest/stormpot/native-image.properties diff --git a/src/main/resources/META-INF/native-image/com.github.chrisvest/stormpot/native-image.properties b/src/main/resources/META-INF/native-image/com.github.chrisvest/stormpot/native-image.properties new file mode 100644 index 00000000..c6636105 --- /dev/null +++ b/src/main/resources/META-INF/native-image/com.github.chrisvest/stormpot/native-image.properties @@ -0,0 +1,2 @@ +#Temporary solution. May be removed when this issue is solved: https://github.com/oracle/graal/issues/3028 +Args = --initialize-at-build-time=stormpot.PaddedAtomicInteger \ No newline at end of file