Skip to content

Commit c78a2a4

Browse files
author
Maxim Butov
committed
Version 1.2.3.
1 parent d6e7e8e commit c78a2a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Maven:
1717
<dependency>
1818
<groupId>io.github.sugar-cubes</groupId>
1919
<artifactId>sugar-cubes-cloner</artifactId>
20-
<version>1.2.2</version>
20+
<version>1.2.3</version>
2121
</dependency>
2222
```
2323

2424
Gradle:
2525
```groovy
26-
implementation "io.github.sugar-cubes:sugar-cubes-cloner:1.2.2"
26+
implementation "io.github.sugar-cubes:sugar-cubes-cloner:1.2.3"
2727
```
2828

2929
It is recommended also to include [Objenesis](https://github.com/easymock/objenesis) library into your application.
@@ -227,7 +227,7 @@ Java 9+ restricts access to objects members via Reflection API. To solve this on
227227
- use `--illegal-access=permit` JVM argument (works on Java below 17);
228228
- if you add the cloner into classpath, use `--add-opens` JVM arguments, e.g. `--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.lang.invoke=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED`;
229229
- if you have an application with the modules which are properly configured, then use cloner's module name, i.e. `--add-opens java.base/java.lang=io.github.sugarcubes.cloner --add-opens java.base/java.lang.invoke=io.github.sugarcubes.cloner --add-opens java.base/java.util=io.github.sugarcubes.cloner --add-opens java.base/java.util.concurrent=io.github.sugarcubes.cloner`;
230-
- the library also contains a Java agent which opens modules for the cloner, just run java with argument `-javaagent:/path/to/sugar-cubes-cloner-1.2.2.jar`.
230+
- the library also contains a Java agent which opens modules for the cloner, just run java with argument `-javaagent:/path/to/sugar-cubes-cloner-1.2.3.jar`.
231231

232232
### Versioning
233233

Diff for: version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.3-SNAPSHOT
1+
1.2.3

0 commit comments

Comments
 (0)