File tree Expand file tree Collapse file tree 8 files changed +23
-15
lines changed
src/main/java/org/gradlex/javamodule/moduleinfo Expand file tree Collapse file tree 8 files changed +23
-15
lines changed Original file line number Diff line number Diff line change 11name : Build Plugin
2- on : [ push, pull_request ]
2+ on : [ push ]
33jobs :
44 gradle-build :
55 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11# Extra Java Module Info Gradle Plugin - Changelog
22
3+ ## Version 1.7
4+ * [ New] [ #95 ] ( https://github.com/gradlex-org/extra-java-module-info/issues/95 ) - granular exports and opens declarations (Thanks [ Ihor Herasymenko] ( https://github.com/iherasymenko ) for contributing!)
5+ * [ Fixed] [ #94 ] ( https://github.com/gradlex-org/extra-java-module-info/issues/94 ) - requireAllDefinedDependencies: skip platform dependencies
6+
37## Version 1.6.2
48* [ New] - Use shared mappings from 'java-module-dependencies' for 'known modules' (if available)
59
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Add this to the build file of your convention plugin's build
5252
5353```
5454dependencies {
55- implementation("org.gradlex:extra-java-module-info:1.6.2 ")
55+ implementation("org.gradlex:extra-java-module-info:1.7 ")
5656}
5757```
5858
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
44}
55
66group = " org.gradlex"
7- version = " 1.6.2 "
7+ version = " 1.7 "
88
99java {
1010 sourceCompatibility = JavaVersion .VERSION_1_8
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.4 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.6-rc-2 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343%JAVA_EXE% -version > NUL 2 >& 1
4444if %ERRORLEVEL% equ 0 goto execute
4545
46- echo .
47- echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48- echo .
49- echo Please set the JAVA_HOME variable in your environment to match the
50- echo location of your Java installation.
46+ echo . 1 >& 2
47+ echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1 >& 2
48+ echo . 1 >& 2
49+ echo Please set the JAVA_HOME variable in your environment to match the 1 >& 2
50+ echo location of your Java installation. 1 >& 2
5151
5252goto fail
5353
@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757
5858if exist " %JAVA_EXE% " goto execute
5959
60- echo .
61- echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62- echo .
63- echo Please set the JAVA_HOME variable in your environment to match the
64- echo location of your Java installation.
60+ echo . 1 >& 2
61+ echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1 >& 2
62+ echo . 1 >& 2
63+ echo Please set the JAVA_HOME variable in your environment to match the 1 >& 2
64+ echo location of your Java installation. 1 >& 2
6565
6666goto fail
6767
Original file line number Diff line number Diff line change 1818
1919import org .gradle .api .model .ObjectFactory ;
2020
21- import java .util .*;
21+ import java .util .Arrays ;
22+ import java .util .LinkedHashMap ;
23+ import java .util .LinkedHashSet ;
24+ import java .util .Map ;
25+ import java .util .Set ;
2226
2327/**
2428 * Data class to hold the information that should be added as module-info.class to an existing Jar file.
You can’t perform that action at this time.
0 commit comments