Skip to content

Commit

Permalink
fixed major issue in line 80. New version released.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arsen A. Gutsal committed Sep 15, 2013
1 parent 3004451 commit bec0ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RoutingGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.grails.plugins.routing.RouteArtefactHandler
import org.springframework.beans.factory.config.MethodInvokingFactoryBean

class RoutingGrailsPlugin {
def version = '1.2.5'
def version = '1.2.5.2'
def grailsVersion = '2.0.0 > *'
def loadAfter = ['controllers', 'services']
def artefacts = [new RouteArtefactHandler()]
Expand Down Expand Up @@ -80,7 +80,7 @@ class RoutingGrailsPlugin {

// otherwise we autostart camelContext here
if (application.config?.autoStartup ?: true) {
application.mainContext('camelContext').start()
application.mainContext.getBean('camelContext').start()
}
}

Expand Down

0 comments on commit bec0ad3

Please sign in to comment.