Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating to cometd 2.6.0 #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CometdGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import org.cometd.bayeux.server.BayeuxServer
import org.springframework.web.context.support.ServletContextAttributeExporter

class CometdGrailsPlugin {
def version = "0.2.2"
def version = "0.2.6"
def grailsVersion = "1.2.1 > *"
def dependsOn = [:]
def pluginExcludes = [
Expand Down Expand Up @@ -83,7 +83,8 @@ CometD and the Bayeux protocol.
}

def doWithSpring = {
bayeux(BayeuxServerImpl, true) { bean ->
bayeux(BayeuxServerImpl) { bean ->
bean.initMethod = 'start'
bean.destroyMethod = 'stop'
}

Expand Down
18 changes: 9 additions & 9 deletions application.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#Grails Metadata file
#Tue Oct 19 04:56:43 GMT+01:00 2010
app.grails.version=1.3.5
app.name=grails-cometd
app.servlet.version=2.4
app.version=0.1
plugins.functional-test=1.2.7
plugins.hibernate=1.3.5
plugins.tomcat=1.3.5
#Grails Metadata file
#Fri Jul 05 16:00:34 BRT 2013
app.grails.version=1.3.7
app.name=grails-cometd
app.servlet.version=2.4
app.version=2.6.0
plugins.functional-test=1.2.7
plugins.hibernate=1.3.7
plugins.tomcat=1.3.7
2 changes: 1 addition & 1 deletion grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ grails.project.dependency.resolution = {
mavenCentral()
}
dependencies {
def cometdVer = '2.0.0'
def cometdVer = '2.6.0'
compile(group: 'org.cometd.java', name: 'cometd-java-server', version: cometdVer) {
excludes 'servlet-api'
}
Expand Down