Skip to content

Commit

Permalink
- upgrading versions from 0.64 to 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed Jul 13, 2010
1 parent 8968fb3 commit ec256e7
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bbb-common-message/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ usePlugin 'eclipse'
usePlugin 'java'
usePlugin 'groovy'

version = '0.64'
version = '0.7'
jar.enabled = true

def appName = 'bbb-common-message'
Expand Down
4 changes: 2 additions & 2 deletions bbb-voice/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ usePlugin 'java'
usePlugin 'war'
usePlugin 'eclipse'

version = '0.64'
version = '0.7'
jar.enabled = true
archivesBaseName = 'sip'

Expand Down Expand Up @@ -84,4 +84,4 @@ task deploy(type:Copy) {
into(sipDir)
from "$buildDir/sip"
}
*/
*/
6 changes: 3 additions & 3 deletions bigbluebutton-apps/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ usePlugin 'groovy'
usePlugin 'war'
usePlugin 'eclipse'

version = '0.63'
version = '0.7'
jar.enabled = true

def appName = 'bigbluebutton'
Expand Down Expand Up @@ -108,7 +108,7 @@ dependencies {

// Libraries needed for scala api
compile 'org.scala-lang:scala-library:2.7.7'
compile 'org/bigbluebutton/common:bbb-common-message:0.64@jar'
compile 'org/bigbluebutton/common:bbb-common-message:0.7@jar'
}

test {
Expand All @@ -131,4 +131,4 @@ task deploy() << {
fileset(dir: "$buildDir/$appName")
}
}


18 changes: 9 additions & 9 deletions bigbluebutton-config/bin/bbb-conf
Original file line number Diff line number Diff line change
Expand Up @@ -507,9 +507,9 @@ if [ $SETUPDEV ]; then
echo "# Enabling $USER to write to /var/log/bigbluebutton to write log files"
sudo chmod -R ugo+rwx /var/log/bigbluebutton

echo "# Copying bbb-common-message-0.64.jar into ${BBBWEBHOME}/lib"
if [ -f $RED5_DIR/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.64.jar ]; then
cp /usr/share/red5/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.64.jar ${BBBWEBHOME}/lib
echo "# Copying bbb-common-message-0.7.jar into ${BBBWEBHOME}/lib"
if [ -f $RED5_DIR/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.7.jar ]; then
cp /usr/share/red5/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.7.jar ${BBBWEBHOME}/lib
fi

echo "
Expand Down Expand Up @@ -579,16 +579,16 @@ if [ $SETUPDEV ]; then
exit 1
fi

echo "# Checking if ~/dev/repo/bbb-common-message-0.64.jar is present"
if [ ! -f ~/dev/repo/bbb-common-message-0.64.jar ]; then
echo "# Copying bbb-common-message-0.64.jar into ${BBBAPPSHOME}"
if [ -f $RED5_DIR/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.64.jar ]; then
echo "# Checking if ~/dev/repo/bbb-common-message-0.7.jar is present"
if [ ! -f ~/dev/repo/bbb-common-message-0.7.jar ]; then
echo "# Copying bbb-common-message-0.7.jar into ${BBBAPPSHOME}"
if [ -f $RED5_DIR/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.7.jar ]; then
if [ ! -d ~/dev/repo ]; then
mkdir -p ~/dev/repo
fi
cp /usr/share/red5/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.64.jar ~/dev/repo/
cp /usr/share/red5/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.7.jar ~/dev/repo/
else
echo "# $RED5_DIR/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.64.jar does NOT exist!"
echo "# $RED5_DIR/webapps/bigbluebutton/WEB-INF/lib/bbb-common-message-0.7.jar does NOT exist!"
fi
fi

Expand Down
4 changes: 2 additions & 2 deletions bigbluebutton-web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ repositories {
}

dependencies {
compile 'org/bigbluebutton/common:bbb-common-message:0.64@jar'
}
compile 'org/bigbluebutton/common:bbb-common-message:0.7@jar'
}

0 comments on commit ec256e7

Please sign in to comment.