Skip to content

Commit 6b924a1

Browse files
committed
acf fixes
1 parent 294ec7b commit 6b924a1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
CHANGELOG
22
=========
33

4+
## 1.3.0
5+
* Adobe CF Compatiblity
6+
47
## 1.2.0
58
* Travis Updates
69
* Changing the array of locations check so that it doesn't fail if a JAR file is passed in the array.

modules/cbjavaloader/ModuleConfig.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ component {
9797
var aJarPaths = [];
9898
for( var thisLocation in javaLoaderDSL.loadPaths ){
9999
if( directoryExists( thisLocation ) ) {
100-
aJarPaths.addAll( getJars( thisLocation ) )
100+
aJarPaths.addAll( getJars( thisLocation ) );
101101
} else if ( !fileExists( thisLocation ) ) {
102102
throw( "Cannot load #thisLocation# as it is not a valid path or file" );
103103
}

workbench/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Version: UPDATE ON EACH RELEASE AS NEEDED -->
44
<property name="project.name" value="cbjavaloader" />
55
<property name="module.name" value="cbjavaloader" />
6-
<property name="project.version" value="1.2.0"/>
6+
<property name="project.version" value="1.3.0"/>
77
<property name="groupID" value="ortussolutions" />
88

99
<!-- Build Labels -->

0 commit comments

Comments
 (0)