Skip to content

Commit

Permalink
Updated version to 2.1.0-SNAPSHOT.
Browse files Browse the repository at this point in the history
Added Java module info.
Renamed IDEA module to be in-line with the Java module.
  • Loading branch information
gbevin committed Aug 4, 2024
1 parent aeecd95 commit 67c727e
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
2 changes: 1 addition & 1 deletion .idea/runConfigurations/Run Tests.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
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.capabilities;
exports rife.database.exceptions;
exports rife.database.queries;
exports rife.database.querymanagers.generic;
exports rife.database.querymanagers.generic.databasedrivers;
exports rife.database.querymanagers.generic.exceptions;
exports rife.database.querymanagers.generic.instrument;
exports rife.database.types;
exports rife.database.types.databasedrivers;
exports rife.datastructures;
exports rife.engine;
exports rife.forms;
exports rife.instrument;
exports rife.instrument.exceptions;
exports rife.ioc;
exports rife.ioc.exceptions;
exports rife.resources;
exports rife.resources.databasedrivers;
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.validation.instrument;
exports rife.xml;
exports rife.xml.exceptions;
}
2 changes: 1 addition & 1 deletion src/main/resources/BLD_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.1
2.1.0-SNAPSHOT

0 comments on commit 67c727e

Please sign in to comment.