-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the ability to build with the maven version of modern docking …
…by running 'gradlew build -PuseMavenVersion=true'. Fixing an issue with module-info.java when building the repo straight from GitHub without the package rename. Modules don't like empty or non-existent packages. A new copy of module-info.java will be copied when building.
- Loading branch information
1 parent
e29ee14
commit 6fc1494
Showing
11 changed files
with
99 additions
and
17 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
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* Module for the Modern Docking framework | ||
*/ | ||
module modern_docking.api { | ||
requires java.desktop; | ||
requires java.logging; | ||
|
||
exports ModernDocking; | ||
exports ModernDocking.event; | ||
exports ModernDocking.exception; | ||
exports ModernDocking.layouts; | ||
exports ModernDocking.persist; | ||
exports ModernDocking.settings; | ||
exports ModernDocking.ui; | ||
exports ModernDocking.api; | ||
|
||
exports io.github.andrewauclair.moderndocking; | ||
exports io.github.andrewauclair.moderndocking.event; | ||
exports io.github.andrewauclair.moderndocking.exception; | ||
exports io.github.andrewauclair.moderndocking.layouts; | ||
exports io.github.andrewauclair.moderndocking.persist; | ||
exports io.github.andrewauclair.moderndocking.settings; | ||
exports io.github.andrewauclair.moderndocking.ui; | ||
exports io.github.andrewauclair.moderndocking.api; | ||
|
||
// export our internal package only to our other extension modules | ||
exports ModernDocking.internal to modern_docking.ui_ext, modern_docking.single_app, modern_docking.multi_app; | ||
exports io.github.andrewauclair.moderndocking.internal to modern_docking.ui_ext, modern_docking.single_app, modern_docking.multi_app; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Module for the Modern Docking framework | ||
*/ | ||
module modern_docking.multi_app { | ||
requires modern_docking.api; | ||
requires java.desktop; | ||
|
||
exports ModernDocking.app; | ||
exports io.github.andrewauclair.moderndocking.app; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Module for the Modern Docking framework | ||
*/ | ||
module modern_docking.single_app { | ||
requires modern_docking.api; | ||
requires java.desktop; | ||
|
||
exports ModernDocking.app; | ||
exports io.github.andrewauclair.moderndocking.app; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* Module for the Modern Docking framework | ||
*/ | ||
module modern_docking.ui_ext { | ||
requires modern_docking.api; | ||
requires java.desktop; | ||
requires com.formdev.flatlaf.extras; | ||
|
||
exports ModernDocking.ext.ui; | ||
exports io.github.andrewauclair.moderndocking.ext.ui; | ||
} |
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