Skip to content

Commit

Permalink
upgrade to resources 1.2.RC2, added dust-core-1.1.1, keep 1.0.0 for b…
Browse files Browse the repository at this point in the history
…ackward compatability
  • Loading branch information
zlegein committed Oct 9, 2012
1 parent 768c324 commit 6820009
Show file tree
Hide file tree
Showing 6 changed files with 645 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DustjsResourcesGrailsPlugin.groovy
Expand Up @@ -3,7 +3,7 @@ import org.grails.plugin.resource.ResourceProcessor

class DustjsResourcesGrailsPlugin {
// the plugin version
def version = "0.9"
def version = "0.9.1"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "1.3.7 > *"
def dependsOn = [:]
Expand Down
2 changes: 1 addition & 1 deletion application.properties
@@ -1,5 +1,5 @@
#Grails Metadata file
#Tue Jun 26 23:11:50 CDT 2012
#Mon Oct 01 15:35:19 CDT 2012
app.grails.version=2.0.0
app.name=dustjs-resources
plugins.rest-client-builder=1.0.2
Expand Down
2 changes: 1 addition & 1 deletion grails-app/conf/BuildConfig.groovy
Expand Up @@ -35,7 +35,7 @@ grails.project.dependency.resolution = {
test ':geb:0.7.0'
test ':spock:0.6'

runtime(":resources:1.2-RC1")
runtime(":resources:1.2.RC2")
}

}
14 changes: 11 additions & 3 deletions grails-app/conf/DustJsResources.groovy
@@ -1,7 +1,15 @@
modules = {

dustjs {
resource url: [plugin: 'dustjs-resources', dir:'js', file:'dust-core-1.0.0.js']
}
dustjs100 {
resource url: [plugin: 'dustjs-resources', dir:'js', file:'dust-core-1.0.0.js']
}

dustjs111 {
resource url: [plugin: 'dustjs-resources', dir:'js', file:'dust-core-1.1.1.js']
}

dustjs {
dependsOn 'dustjs111'
}

}
5 changes: 3 additions & 2 deletions plugin.xml
@@ -1,4 +1,4 @@
<plugin name='dustjs-resources' version='0.3' grailsVersion='1.3.7 &gt; *'>
<plugin name='dustjs-resources' version='0.9.1' grailsVersion='1.3.7 &gt; *'>
<author>Zach Legein</author>
<authorEmail>zlegein@gmail.com</authorEmail>
<title>DustJs Resource Plugin</title>
Expand All @@ -19,6 +19,7 @@
<repository name='http://repository.codehaus.org' url='http://repository.codehaus.org/' />
<repository name='http://download.java.net/maven/2/' url='http://download.java.net/maven/2/' />
<repository name='http://repository.jboss.com/maven2/' url='http://repository.jboss.com/maven2/' />
<repository name='http://grails.org/plugins' url='http://grails.org/plugins' />
</repositories>
<dependencies>
<test>
Expand All @@ -34,7 +35,7 @@
<plugin group='org.grails.plugins' name='spock' version='0.6' />
</test>
<runtime>
<plugin group='org.grails.plugins' name='resources' version='1.1.6' />
<plugin group='org.grails.plugins' name='resources' version='1.2.RC2' />
</runtime>
</plugins>
<runtimePluginRequirements />
Expand Down

0 comments on commit 6820009

Please sign in to comment.