Browse Source

Upgrade Java SemVer to 0.10.2 (#560)

tags/release-3.11.0
John Niang 2 months ago
parent
commit
a73185226d
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      pf4j/pom.xml
  2. 1
    1
      pf4j/src/main/java/module-info.java

+ 1
- 1
pf4j/pom.xml View File

@@ -107,7 +107,7 @@
<dependency>
<groupId>com.github.zafarkhaja</groupId>
<artifactId>java-semver</artifactId>
<version>0.9.0</version>
<version>0.10.2</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>

+ 1
- 1
pf4j/src/main/java/module-info.java View File

@@ -34,7 +34,7 @@ module org.pf4j {
// The java-semver library currently does not provide a module.
// Maybe we should send them a pull request, that at least they provide an
// automatic module name in their MANIFEST file.
requires java.semver;
requires com.github.zafarkhaja.semver;

// Maybe we should reconsider the package hierarchy, that only classes are
// exported, which are required by 3rd party developers.

Loading…
Cancel
Save