Browse Source

Upgrade Java SemVer to 0.10.2 (#560)

tags/release-3.11.0
John Niang 3 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

<dependency> <dependency>
<groupId>com.github.zafarkhaja</groupId> <groupId>com.github.zafarkhaja</groupId>
<artifactId>java-semver</artifactId> <artifactId>java-semver</artifactId>
<version>0.9.0</version>
<version>0.10.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.ow2.asm</groupId> <groupId>org.ow2.asm</groupId>

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

// The java-semver library currently does not provide a module. // The java-semver library currently does not provide a module.
// Maybe we should send them a pull request, that at least they provide an // Maybe we should send them a pull request, that at least they provide an
// automatic module name in their MANIFEST file. // 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 // Maybe we should reconsider the package hierarchy, that only classes are
// exported, which are required by 3rd party developers. // exported, which are required by 3rd party developers.

Loading…
Cancel
Save