Skip to content

Commit

Permalink
Fix "r$sfields" bug
Browse files Browse the repository at this point in the history
I fix the NoSuchFieldError: r$sfields bug by moving I18nTagLib to
package asset.pipeline.i18n and linking to version 2.0.21 of
asset-pipeline.
  • Loading branch information
dellermann committed Jan 3, 2015
1 parent b411d57 commit a3a99e3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@
<classpathentry kind="src" path="test/unit"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry exported="true" kind="con" path="GROOVY_DSL_SUPPORT"/>
<classpathentry excluding="BuildConfig.groovy|*DataSource.groovy|UrlMappings.groovy|Config.groovy|BootStrap.groovy|spring/resources.groovy" kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.13/grails-app/conf">
<classpathentry excluding="BuildConfig.groovy|*DataSource.groovy|UrlMappings.groovy|Config.groovy|BootStrap.groovy|spring/resources.groovy" kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.21/grails-app/conf">
<attributes>
<attribute name="org.grails.ide.eclipse.core.SOURCE_FOLDER" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.13/grails-app/services">
<classpathentry kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.21/grails-app/services">
<attributes>
<attribute name="org.grails.ide.eclipse.core.SOURCE_FOLDER" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.13/grails-app/taglib">
<classpathentry kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.21/grails-app/taglib">
<attributes>
<attribute name="org.grails.ide.eclipse.core.SOURCE_FOLDER" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.13/src/groovy">
<classpathentry kind="src" path=".link_to_grails_plugins/asset-pipeline-2.0.21/src/groovy">
<attributes>
<attribute name="org.grails.ide.eclipse.core.SOURCE_FOLDER" value="true"/>
</attributes>
Expand Down
4 changes: 2 additions & 2 deletions grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* BuildConfig.groovy
*
* Copyright (c) 2014, Daniel Ellermann
* Copyright (c) 2014-2015, Daniel Ellermann
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -31,7 +31,7 @@ grails.project.dependency.resolution = {
dependencies {}

plugins {
runtime ':asset-pipeline:2.0.13'
runtime ':asset-pipeline:2.0.21'

build ':release:3.0.1', ':rest-client-builder:1.0.3', {
export = false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* I18nTagLib.groovy
*
* Copyright (c) 2014, Daniel Ellermann
* Copyright (c) 2014-2015, Daniel Ellermann
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -17,8 +17,10 @@
*/


package asset.pipeline
package asset.pipeline.i18n

import asset.pipeline.AssetFile
import asset.pipeline.AssetHelper
import org.codehaus.groovy.grails.commons.GrailsApplication


Expand Down

0 comments on commit a3a99e3

Please sign in to comment.