Skip to content

Commit

Permalink
Context files need to end up within the JAR
Browse files Browse the repository at this point in the history
  • Loading branch information
skuro committed May 1, 2011
1 parent 02a1909 commit 33d4a9d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<!-- Register the Clojure script processor -->
<bean id="webframework.registrar.clojurescriptprocessor" class="org.springframework.extensions.surf.ScriptProcessorRegistrar" init-method="init">
<property name="factory">
<bean class="org.springframework.extensions.webscripts.processor.ClojureScriptProcessorFactory" />
</property>
</bean>

</beans>
@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<!-- Register the Clojure script processor -->
<bean id="webscripts.registrar.clojureScriptprocessor" class="org.springframework.extensions.webscripts.ScriptProcessorRegistrar" init-method="init">
<property name="factory">
<bean class="org.springframework.extensions.webscripts.processor.ClojureScriptProcessorFactory" />
</property>
</bean>

</beans>

0 comments on commit 33d4a9d

Please sign in to comment.