Skip to content

Commit

Permalink
bz-1000403: Functions not recognized
Browse files Browse the repository at this point in the history
  • Loading branch information
jervisliu committed Sep 6, 2013
1 parent 5a243ea commit 4ea73df
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -83,6 +83,8 @@ public Path generatePathForAsset(Module jcrModule, AssetItem jcrAssetItem, boole
assetPath = modulePath.resolve("src/main/resources/" + jcrAssetItem.getName() + ".rdrl");
} else if (AssetFormats.BUSINESS_RULE.equals(jcrAssetItem.getFormat()) && hasDSL) {
assetPath = modulePath.resolve("src/main/resources/" + jcrAssetItem.getName() + ".rdslr");
} else if (AssetFormats.FUNCTION.equals(jcrAssetItem.getFormat())) {
assetPath = modulePath.resolve("src/main/resources/" + jcrAssetItem.getName() + ".drl");
} else if (AssetFormats.TEST_SCENARIO.equals(jcrAssetItem.getFormat())) {
assetPath = modulePath.resolve("src/test/resources/" + jcrAssetItem.getName() + "." + jcrAssetItem.getFormat());
} else {
Expand Down

0 comments on commit 4ea73df

Please sign in to comment.