-
-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Full Java Platform Module System support for Java 9+ (#2846)
As much as automatic modules do the job for now, jlink requires explicit module definition.
- Loading branch information
Showing
6 changed files
with
117 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ We use these goals frequently to keep the dependencies and plugins up-to-date: | |
</parent> | ||
<groupId>io.vavr</groupId> | ||
<artifactId>vavr-parent</artifactId> | ||
<version>0.10.4</version> | ||
<version>0.10.5-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>Vavr Parent</name> | ||
<description>Vavr (formerly called Javaslang) is an object-functional language extension to Java 8+.</description> | ||
|
@@ -49,7 +49,7 @@ We use these goals frequently to keep the dependencies and plugins up-to-date: | |
<connection>scm:git:[email protected]:vavr-io/vavr.git</connection> | ||
<developerConnection>scm:git:[email protected]:vavr-io/vavr.git</developerConnection> | ||
<url>[email protected]:vavr-io/vavr.git</url> | ||
<tag>v0.10.4</tag> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<developers> | ||
<developer> | ||
|
@@ -86,6 +86,7 @@ We use these goals frequently to keep the dependencies and plugins up-to-date: | |
<maven.surefire.version>3.5.1</maven.surefire.version> | ||
<maven.source.version>3.3.1</maven.source.version> | ||
<maven.exec.version>3.4.1</maven.exec.version> | ||
<moditect.version>1.2.2.Final</moditect.version> | ||
<scala.maven.version>4.9.2</scala.maven.version> | ||
<scala.version>3.5.1</scala.version> | ||
</properties> | ||
|
@@ -160,6 +161,11 @@ We use these goals frequently to keep the dependencies and plugins up-to-date: | |
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.moditect</groupId> | ||
<artifactId>moditect-maven-plugin</artifactId> | ||
<version>${moditect.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters