Skip to content

Commit

Permalink
- upgrade bigbluebutton-web to grails 2.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed Feb 25, 2014
1 parent 944f7a1 commit 6cf30e9
Show file tree
Hide file tree
Showing 210 changed files with 5,528 additions and 14,508 deletions.
Empty file modified bigbluebutton-web/COPYING.LESSER 100644 → 100755
Empty file.
Empty file modified bigbluebutton-web/INSTALL 100644 → 100755
Empty file.
4 changes: 0 additions & 4 deletions bigbluebutton-web/README

This file was deleted.

76 changes: 0 additions & 76 deletions bigbluebutton-web/agi/scripts/meetme.groovy

This file was deleted.

9 changes: 4 additions & 5 deletions bigbluebutton-web/application.properties
@@ -1,7 +1,6 @@
#Grails Metadata file
#Thu Jun 06 12:32:30 PDT 2013
app.grails.version=1.3.9
#Tue Feb 25 00:47:48 UTC 2014
app.grails.version=2.3.6
app.name=bigbluebutton
app.servlet.version=2.4
app.version=0.70dev
plugins.tomcat=1.3.9
app.servlet.version=3.0
app.version=0.1
19 changes: 0 additions & 19 deletions bigbluebutton-web/bigbluebutton.launch

This file was deleted.

73 changes: 0 additions & 73 deletions bigbluebutton-web/bigbluebutton.tmproj

This file was deleted.

18 changes: 12 additions & 6 deletions bigbluebutton-web/build.gradle
@@ -1,10 +1,10 @@
usePlugin 'java'
usePlugin 'eclipse'
apply plugin: 'java'
apply plugin: 'eclipse'

task resolveDeps(dependsOn: configurations.default.buildArtifacts, type: Copy) {
task resolveDeps(type: Copy) {
into('lib')
from configurations.default
from configurations.default.allArtifacts*.file
from configurations.default.allArtifacts.file
}

repositories {
Expand Down Expand Up @@ -42,9 +42,15 @@ dependencies {
compile 'commons-pool:commons-pool:1.5.6'
compile 'commons-lang:commons-lang:2.5'
compile 'com.google.code.gson:gson:1.7.1'

compile 'org.springframework.amqp:spring-rabbit:1.2.0.RELEASE@jar'

// Logging
// compile 'ch.qos.logback:logback-core:1.0.9@jar'
// compile 'ch.qos.logback:logback-classic:1.0.9@jar'
// compile 'org.slf4j:log4j-over-slf4j:1.7.2@jar'
// compile 'org.slf4j:jcl-over-slf4j:1.7.2@jar'
// compile 'org.slf4j:jul-to-slf4j:1.7.2@jar'
// compile 'org.slf4j:slf4j-api:1.7.2@jar'

//junit
compile 'junit:junit:4.8.2'
}
62 changes: 0 additions & 62 deletions bigbluebutton-web/build.xml

This file was deleted.

5 changes: 5 additions & 0 deletions bigbluebutton-web/grails-app/conf/ApplicationResources.groovy
@@ -0,0 +1,5 @@
modules = {
application {
resource url:'js/application.js'
}
}
35 changes: 6 additions & 29 deletions bigbluebutton-web/grails-app/conf/BootStrap.groovy
@@ -1,30 +1,7 @@
/**
* BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
*
* Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 3.0 of the License, or (at your option) any later
* version.
*
* BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
*
*/


class BootStrap {
def jmsContainer

def init = { servletContext ->
log.debug "Bootstrapping bbb-web"
}

def destroy = {
}
}

def init = { servletContext ->
}
def destroy = {
}
}

0 comments on commit 6cf30e9

Please sign in to comment.