keycloak-uncached
Details
distribution/modules/lib.xml 8(+4 -4)
diff --git a/distribution/modules/lib.xml b/distribution/modules/lib.xml
index c28dcf8..39bb7c2 100755
--- a/distribution/modules/lib.xml
+++ b/distribution/modules/lib.xml
@@ -99,7 +99,7 @@
</sequential>
</macrodef>
- <scriptdef name="define-module-dir" language="javascript">
+ <scriptdef name="define-module-dir" language="javascript" manager="bsf">
<attribute name="name"/>
<attribute name="slot"/>
<![CDATA[
@@ -109,7 +109,7 @@
]]>
</scriptdef>
- <scriptdef name="define-bundle-dir" language="javascript">
+ <scriptdef name="define-bundle-dir" language="javascript" manager="bsf">
<attribute name="name"/>
<attribute name="slot"/>
<![CDATA[
@@ -123,7 +123,7 @@
Get the version from the parent directory of the jar. If the parent directory is 'target' this
means that the jar is contained in AS build so extract the version from the file name
-->
- <scriptdef name="define-maven-artifact" language="javascript">
+ <scriptdef name="define-maven-artifact" language="javascript" manager="bsf">
<attribute name="group"/>
<attribute name="artifact"/>
<attribute name="classifier"/>
@@ -258,7 +258,7 @@
</sequential>
</macrodef>
- <scriptdef name="define-resource-root" language="javascript">
+ <scriptdef name="define-resource-root" language="javascript" manager="bsf">
<attribute name="path"/>
<attribute name="jandex"/>
<![CDATA[
distribution/modules/pom.xml 15(+15 -0)
diff --git a/distribution/modules/pom.xml b/distribution/modules/pom.xml
index 107a06d..ef6574d 100755
--- a/distribution/modules/pom.xml
+++ b/distribution/modules/pom.xml
@@ -126,6 +126,21 @@
</exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.9.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.bsf</groupId>
+ <artifactId>bsf-api</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
</dependencies>
</plugin>
<plugin>