Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Grails-Perf4J 0.1.1
-
Component/s: None
-
Labels:None
-
Patch Submitted:Yes
Description
I'm using the plugin in 1.2-M2, but had to change the allowed Grails version and install the plugin locally.
A new release (0.1.1) just to allow this would be great for all of us testing (and profiling) our applications for 1.2
Index: Perf4jGrailsPlugin.groovy
===================================================================
--- Perf4jGrailsPlugin.groovy (revisión: 56532)
+++ Perf4jGrailsPlugin.groovy (copia de trabajo)
@@ -7,9 +7,9 @@
class Perf4jGrailsPlugin {
// the plugin version
- def version = 0.1
+ def version = 0.1.1
// the version or versions of Grails the plugin is designed for
- def grailsVersion = GrailsPluginUtils.grailsVersion
+ def grailsVersion = "${GrailsPluginUtils.grailsVersion} > *"
// the other plugins this plugin depends on
def dependsOn = [:]
def loadAfter = ['core', 'hibernate', 'services', 'controllers', 'logging']
Fixed in 0.1.1 - thanks for the report and the patch!