Skip to content

Commit

Permalink
Modularise de.sandec.jmemorybuddy module (#8)
Browse files Browse the repository at this point in the history
* Modularise `de.sandec.jmemorybuddy` module

* Update changelog

* Update readme to the new version `0.5.5`
  • Loading branch information
indritbeqiri authored Jul 11, 2024
1 parent 4a33fa5 commit 9ea7fa7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### 0.5.5
* Parameterize classes and methods providing better type safety
* Modularize `JMemoryBuddy` artifact to be in compliance with the Java Platform Module System.
* Set minimum Java version to 11
* Enable JUnit 5 tests running in the CI builds

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The library is published at MavenCentral
<dependency>
<groupId>de.sandec</groupId>
<artifactId>JMemoryBuddy</artifactId>
<version>0.5.4</version>
<version>0.5.5</version>
<scope>test</scope>
</dependency>
```
Expand Down
9 changes: 9 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* Module descriptor for the JMemoryBuddy module.
*/
module de.sandec.jmemorybuddy {
requires java.management;
requires jdk.management;

exports de.sandec.jmemorybuddy;
}

0 comments on commit 9ea7fa7

Please sign in to comment.