forked from pschneider-manzell/grails-spock-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0ac2ab
commit a2ec221
Showing
12 changed files
with
101 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Grails Metadata file | ||
#Fri Apr 04 08:49:24 CEST 2014 | ||
app.grails.version=2.3.7 | ||
#Mon Jun 09 16:50:48 CEST 2014 | ||
app.grails.version=2.4.0 | ||
app.name=grails-spock-examples | ||
app.servlet.version=2.5 | ||
app.servlet.version=3.0 | ||
app.version=0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,31 @@ | ||
<?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.xsd"> | ||
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.xsd"> | ||
|
||
<bean id="grailsApplication" class="org.codehaus.groovy.grails.commons.GrailsApplicationFactoryBean"> | ||
<description>Grails application factory bean</description> | ||
<property name="grailsDescriptor" value="/WEB-INF/grails.xml" /> | ||
<property name="grailsResourceLoader" ref="grailsResourceLoader" /> | ||
</bean> | ||
<bean id="grailsApplication" class="org.codehaus.groovy.grails.commons.GrailsApplicationFactoryBean"> | ||
<description>Grails application factory bean</description> | ||
<property name="grailsDescriptor" value="/WEB-INF/grails.xml" /> | ||
</bean> | ||
|
||
<bean id="pluginManager" class="org.codehaus.groovy.grails.plugins.GrailsPluginManagerFactoryBean"> | ||
<description>A bean that manages Grails plugins</description> | ||
<property name="grailsDescriptor" value="/WEB-INF/grails.xml" /> | ||
<property name="application" ref="grailsApplication" /> | ||
</bean> | ||
<bean id="pluginManager" class="org.codehaus.groovy.grails.plugins.GrailsPluginManagerFactoryBean"> | ||
<description>A bean that manages Grails plugins</description> | ||
<property name="grailsDescriptor" value="/WEB-INF/grails.xml" /> | ||
<property name="application" ref="grailsApplication" /> | ||
</bean> | ||
|
||
<bean id="grailsConfigurator" class="org.codehaus.groovy.grails.commons.spring.GrailsRuntimeConfigurator"> | ||
<constructor-arg> | ||
<ref bean="grailsApplication" /> | ||
</constructor-arg> | ||
<property name="pluginManager" ref="pluginManager" /> | ||
</bean> | ||
<bean id="grailsConfigurator" class="org.codehaus.groovy.grails.commons.spring.GrailsRuntimeConfigurator"> | ||
<constructor-arg> | ||
<ref bean="grailsApplication" /> | ||
</constructor-arg> | ||
<property name="pluginManager" ref="pluginManager" /> | ||
</bean> | ||
|
||
<bean id="grailsResourceLoader" class="org.codehaus.groovy.grails.commons.GrailsResourceLoaderFactoryBean" /> | ||
<bean id="characterEncodingFilter" class="org.springframework.web.filter.CharacterEncodingFilter"> | ||
<property name="encoding"> | ||
<value>utf-8</value> | ||
</property> | ||
</bean> | ||
|
||
<bean id="characterEncodingFilter" class="org.springframework.web.filter.CharacterEncodingFilter"> | ||
<property name="encoding"> | ||
<value>utf-8</value> | ||
</property> | ||
</bean> | ||
|
||
<bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean" /> | ||
<bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean" /> | ||
</beans> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+6.04 KB
wrapper/grails-wrapper-runtime-2.3.7.jar → wrapper/grails-wrapper-runtime-2.4.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.