Skip to content

Commit 7c3ef68

Browse files
committed
Version 1.6
1 parent dd3d198 commit 7c3ef68

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Extra Java Module Info Gradle Plugin - Changelog
22

3+
## Version 1.6
4+
* [New] [#74](https://github.com/gradlex-org/extra-java-module-info/issues/74) - Add 'deriveAutomaticModuleNamesFromFileNames' option (Thanks [Mike Wacker](https://github.com/mikewacker) for suggesting!)
5+
* [New] [#85](https://github.com/gradlex-org/extra-java-module-info/issues/85) - Add check that existing 'Automatic-Module-Names' are not changed accidentally
6+
* [Fixed] [#77](https://github.com/gradlex-org/extra-java-module-info/issues/77) - 'exportAllPackages' breaks module for multi-release Jars (Thanks [Christopher Schnick](https://github.com/crschnick) for reporting!)
7+
* [Fixed] [#78](https://github.com/gradlex-org/extra-java-module-info/issues/78) - Empty Jars created when Intellij refreshes project (Thanks [Kostas Pagratis](https://github.com/kpagratis) for reporting!)
8+
* [Fixed] [#81](https://github.com/gradlex-org/extra-java-module-info/issues/81) - 'requireAllDefinedDependencies' does not work reliably for 'annotationProcessor'
9+
310
## Version 1.5
411
* [New] [#75](https://github.com/gradlex-org/extra-java-module-info/issues/75) - Add 'failOnAutomaticModules' option (Thanks [Ihor Herasymenko](https://github.com/iherasymenko) for contributing!)
512
* [New] [#75](https://github.com/gradlex-org/extra-java-module-info/issues/75) - Support patching of real modules (Thanks [Ihor Herasymenko](https://github.com/iherasymenko) for contributing!)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Add this to the build file of your convention plugin's build
4747

4848
```
4949
dependencies {
50-
implementation("org.gradlex:extra-java-module-info:1.5")
50+
implementation("org.gradlex:extra-java-module-info:1.6")
5151
}
5252
```
5353

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "org.gradlex"
7-
version = "1.5"
7+
version = "1.6"
88

99
java {
1010
sourceCompatibility = JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)