-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated version to 2.1.0-SNAPSHOT. Updated RIFE2/core.
- Loading branch information
Showing
4 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
Submodule core
updated
12 files
+8 −0 | .idea/bld.xml | |
+0 −1 | .idea/libraries/runtime.xml | |
+2 −3 | .idea/libraries/test.xml | |
+1 −1 | .idea/modules.xml | |
+0 −0 | .idea/rife.core.iml | |
+1 −1 | .idea/runConfigurations/Run Tests.xml | |
+1 −1 | README.md | |
+4 −10 | src/bld/java/rife/AbstractRife2Build.java | |
+14 −2 | src/bld/java/rife/CoreBuild.java | |
+10 −0 | src/main/java/rife/cmf/transform/package-info.java | |
+36 −0 | src/main/module/module-info.java | |
+1 −1 | src/main/resources/CORE_VERSION |
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,54 @@ | ||
/** | ||
* bld is a new build system that allows you to write your build logic in pure Java. | ||
* <p> | ||
* More information can be found on the <a href="https://rife2.com/bld">`bld` website</a>. | ||
* | ||
* @since 2.1.0 | ||
*/ | ||
module rife.bld { | ||
requires java.compiler; | ||
requires java.desktop; | ||
requires java.logging; | ||
requires java.net.http; | ||
requires java.prefs; | ||
requires static java.sql; | ||
requires java.xml; | ||
|
||
exports rife.bld; | ||
exports rife.bld.blueprints; | ||
exports rife.bld.dependencies; | ||
exports rife.bld.dependencies.exceptions; | ||
exports rife.bld.help; | ||
exports rife.bld.operations; | ||
exports rife.bld.operations.exceptions; | ||
exports rife.bld.publish; | ||
|
||
exports rife; | ||
exports rife.cmf; | ||
exports rife.cmf.transform; | ||
exports rife.config; | ||
exports rife.config.exceptions; | ||
exports rife.database; | ||
exports rife.database.exceptions; | ||
exports rife.database.queries; | ||
exports rife.database.querymanagers.generic; | ||
exports rife.database.querymanagers.generic.exceptions; | ||
exports rife.database.types; | ||
exports rife.datastructures; | ||
exports rife.engine; | ||
exports rife.forms; | ||
exports rife.ioc; | ||
exports rife.ioc.exceptions; | ||
exports rife.resources; | ||
exports rife.resources.exceptions; | ||
exports rife.selector; | ||
exports rife.template; | ||
exports rife.template.exceptions; | ||
exports rife.tools; | ||
exports rife.tools.exceptions; | ||
exports rife.validation; | ||
exports rife.validation.annotations; | ||
exports rife.validation.exceptions; | ||
exports rife.xml; | ||
exports rife.xml.exceptions; | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
2.0.1 | ||
2.1.0-SNAPSHOT |