Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
bdw429s committed May 3, 2022
2 parents 3302bdd + 138619f commit ba7c150
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ java.debug=true
dependencies.dir=${basedir}/lib
cfml.version=5.3.9.133-SNAPSHOT
cfml.extensions=8D7FB0DF-08BB-1589-FE3975678F07DB17
cfml.loader.version=2.6.16
cfml.loader.version=2.6.17
cfml.cli.version=${cfml.loader.version}.${cfml.version}
lucee.version=${cfml.version}
# Don't bump this version. Need to remove this dependency from cfmlprojects.org
Expand Down
4 changes: 2 additions & 2 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ External Dependencies:
<property name="distro.groupID" value="ortussolutions" />
<property name="distro.name" value="commandbox"/>
<!-- Special things happen when the version and stableVersion are the same value as that signifies a "stable" build. -->
<property name="commandbox.version" value="5.5.0"/>
<property name="commandbox.stableVersion" value="5.5.0"/>
<property name="commandbox.version" value="5.5.1"/>
<property name="commandbox.stableVersion" value="5.5.1"/>

<!-- Time Label -->
<tstamp prefix="start"/>
Expand Down
5 changes: 4 additions & 1 deletion src/cfml/system/config/box.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@
"keywords": {
"title": "Keywords",
"description": "ForgeBox keywords",
"type": "array",
"type": [
"array",
"string"
],
"items": {
"title": "Keyword",
"description": "ForgeBox keyword",
Expand Down
2 changes: 2 additions & 0 deletions src/java/cliloader/LoaderCLIMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,8 @@ public static ArrayList< String > initialize( String[] arguments ) throws IOExce
File libDir = getLibDir();
// Default Log4j2 config is in the libn folder
System.setProperty("log4j2.configurationFile", new File( libDir, "log4j2.xml" ).toURI().toString() );
// The OSGI bundle loader is throwing an error so we need to force the default CL context selector
System.setProperty("Log4jContextSelector", "org.apache.logging.log4j.core.selector.ClassLoaderContextSelector" );
props.setProperty( "cfml.cli.lib", libDir.getAbsolutePath() );
File cfmlDir = new File( cli_home.getPath() + "/cfml" );
File cfmlSystemDir = new File( cli_home.getPath() + "/cfml/system" );
Expand Down

0 comments on commit ba7c150

Please sign in to comment.