revert bbb-lti changes
This commit is contained in:
parent
c76ab27d8e
commit
5532fb2895
@ -23,11 +23,9 @@ buildscript {
|
||||
maven { url "https://repo.grails.org/grails/core" }
|
||||
}
|
||||
dependencies {
|
||||
classpath "org.grails:grails-gradle-plugin:${grailsGradlePluginVersion}"
|
||||
classpath "org.grails.plugins:hibernate5:${gormVersion}"
|
||||
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:3.3.4"
|
||||
classpath "gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.6"
|
||||
classpath "org.grails.plugins:views-gradle:2.1.0"
|
||||
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
|
||||
classpath "org.grails.plugins:hibernate5:${gormVersion - ".RELEASE"}"
|
||||
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.15.1"
|
||||
}
|
||||
}
|
||||
|
||||
@ -38,10 +36,8 @@ apply plugin: "eclipse"
|
||||
apply plugin: "idea"
|
||||
apply plugin: "war"
|
||||
apply plugin: "org.grails.grails-web"
|
||||
apply plugin:"com.bertramlabs.asset-pipeline"
|
||||
apply plugin: "asset-pipeline"
|
||||
apply plugin: "org.grails.grails-gsp"
|
||||
apply plugin:"com.github.erdi.webdriver-binaries"
|
||||
apply plugin:"org.grails.plugins.views-json"
|
||||
|
||||
task resolveDeps(type: Copy) {
|
||||
into('lib')
|
||||
@ -78,58 +74,43 @@ repositories {
|
||||
maven { url "https://jitpack.io" }
|
||||
}
|
||||
|
||||
configurations {
|
||||
developmentOnly
|
||||
runtimeClasspath {
|
||||
extendsFrom developmentOnly
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
runtimeOnly "com.bertramlabs.plugins:asset-pipeline-grails:3.3.4"
|
||||
implementation group: 'commons-codec', name: 'commons-codec', version: '1.15'
|
||||
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
||||
implementation "org.codehaus.groovy:groovy-dateutil:3.0.9"
|
||||
implementation "org.springframework.boot:spring-boot-starter-logging"
|
||||
implementation "org.springframework.boot:spring-boot-autoconfigure"
|
||||
implementation "org.grails:grails-core"
|
||||
implementation "org.springframework.boot:spring-boot-starter-actuator"
|
||||
implementation "org.springframework.boot:spring-boot-starter-tomcat"
|
||||
implementation "org.grails:grails-web-boot"
|
||||
implementation "org.grails:grails-logging"
|
||||
implementation "org.grails:grails-plugin-rest"
|
||||
implementation "org.grails:grails-plugin-databinding"
|
||||
implementation "org.grails:grails-plugin-i18n"
|
||||
implementation "org.grails:grails-plugin-services"
|
||||
implementation "org.grails:grails-plugin-url-mappings"
|
||||
implementation "org.grails:grails-plugin-interceptors"
|
||||
implementation "org.grails.plugins:cache"
|
||||
implementation "org.grails.plugins:async"
|
||||
implementation "org.grails.plugins:scaffolding"
|
||||
implementation "org.grails.plugins:events"
|
||||
implementation "org.grails.plugins:gsp"
|
||||
implementation 'com.github.blindsidenetworks:oauth:master-SNAPSHOT'
|
||||
implementation "org.json:json:20180813"
|
||||
compile "org.springframework.boot:spring-boot-starter-logging"
|
||||
compile "org.springframework.boot:spring-boot-autoconfigure"
|
||||
compile "org.grails:grails-core"
|
||||
compile "org.springframework.boot:spring-boot-starter-actuator"
|
||||
compile "org.springframework.boot:spring-boot-starter-tomcat"
|
||||
compile "org.grails:grails-web-boot"
|
||||
compile "org.grails:grails-logging"
|
||||
compile "org.grails:grails-plugin-rest"
|
||||
compile "org.grails:grails-plugin-databinding"
|
||||
compile "org.grails:grails-plugin-i18n"
|
||||
compile "org.grails:grails-plugin-services"
|
||||
compile "org.grails:grails-plugin-url-mappings"
|
||||
compile "org.grails:grails-plugin-interceptors"
|
||||
compile 'org.grails.plugins:external-config:1.2.2'
|
||||
compile "org.grails.plugins:cache"
|
||||
compile "org.grails.plugins:async"
|
||||
compile "org.grails.plugins:scaffolding"
|
||||
compile "org.grails.plugins:events"
|
||||
compile "org.grails.plugins:gsp"
|
||||
compile 'com.github.blindsidenetworks:oauth:master-SNAPSHOT'
|
||||
compile "org.json:json:20180813"
|
||||
console "org.grails:grails-console"
|
||||
profile "org.grails.profiles:web"
|
||||
testImplementation "org.grails:grails-gorm-testing-support"
|
||||
testImplementation "org.grails.plugins:geb"
|
||||
testImplementation "org.grails:grails-web-testing-support"
|
||||
testRuntimeOnly "org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion"
|
||||
testRuntimeOnly "org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion"
|
||||
testRuntimeOnly "org.seleniumhq.selenium:selenium-safari-driver:$seleniumSafariDriverVersion"
|
||||
testImplementation "org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion"
|
||||
testImplementation "org.seleniumhq.selenium:selenium-api:$seleniumVersion"
|
||||
testImplementation "org.seleniumhq.selenium:selenium-support:$seleniumVersion"
|
||||
runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.15.1"
|
||||
testCompile "org.grails:grails-gorm-testing-support"
|
||||
testCompile "org.grails.plugins:geb"
|
||||
testCompile "org.grails:grails-web-testing-support"
|
||||
testCompile "org.grails.plugins:geb:1.1.2"
|
||||
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
|
||||
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
|
||||
testRuntime "org.seleniumhq.selenium:selenium-chrome-driver:2.47.1"
|
||||
}
|
||||
|
||||
bootRun {
|
||||
jvmArgs(
|
||||
'-Dspring.output.ansi.enabled=always',
|
||||
'-noverify',
|
||||
'-XX:TieredStopAtLevel=1',
|
||||
'-Xmx1024m')
|
||||
sourceResources sourceSets.main
|
||||
jvmArgs('-Dspring.output.ansi.enabled=always')
|
||||
addResources = true
|
||||
String springProfilesActive = 'spring.profiles.active'
|
||||
systemProperty springProfilesActive, System.getProperty(springProfilesActive)
|
||||
}
|
||||
@ -145,7 +126,3 @@ assets {
|
||||
minifyJs = true
|
||||
minifyCss = true
|
||||
}
|
||||
|
||||
springBoot {
|
||||
mainClassName = 'org.bigbluebuttoni.Application'
|
||||
}
|
||||
|
@ -1,10 +1,3 @@
|
||||
grailsVersion=5.0.1
|
||||
gormVersion=7.1.0
|
||||
grailsGradlePluginVersion=5.0.0
|
||||
groovyVersion=3.0.9
|
||||
gradleWrapperVersion=7.3.1
|
||||
chromeDriverVersion=2.44
|
||||
geckodriverVersion=0.24.0
|
||||
seleniumVersion=3.12.0
|
||||
webdriverBinariesVersion=2.6
|
||||
seleniumSafariDriverVersion=3.14.0
|
||||
grailsVersion=3.3.10
|
||||
gormVersion=6.1.12.RELEASE
|
||||
gradleWrapperVersion=3.5
|
||||
|
BIN
bbb-lti/gradle/wrapper/gradle-wrapper.jar
vendored
BIN
bbb-lti/gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip
|
||||
|
100
bbb-lti/gradlew
vendored
100
bbb-lti/gradlew
vendored
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env sh
|
||||
#!/usr/bin/env bash
|
||||
|
||||
##############################################################################
|
||||
##
|
||||
@ -6,6 +6,42 @@
|
||||
##
|
||||
##############################################################################
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS=""
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD="maximum"
|
||||
|
||||
warn ( ) {
|
||||
echo "$*"
|
||||
}
|
||||
|
||||
die ( ) {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
case "`uname`" in
|
||||
CYGWIN* )
|
||||
cygwin=true
|
||||
;;
|
||||
Darwin* )
|
||||
darwin=true
|
||||
;;
|
||||
MINGW* )
|
||||
msys=true
|
||||
;;
|
||||
esac
|
||||
|
||||
# Attempt to set APP_HOME
|
||||
# Resolve links: $0 may be a link
|
||||
PRG="$0"
|
||||
@ -24,46 +60,6 @@ cd "`dirname \"$PRG\"`/" >/dev/null
|
||||
APP_HOME="`pwd -P`"
|
||||
cd "$SAVED" >/dev/null
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
|
||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
DEFAULT_JVM_OPTS='"-Xmx64m"'
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD="maximum"
|
||||
|
||||
warn () {
|
||||
echo "$*"
|
||||
}
|
||||
|
||||
die () {
|
||||
echo
|
||||
echo "$*"
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
# OS specific support (must be 'true' or 'false').
|
||||
cygwin=false
|
||||
msys=false
|
||||
darwin=false
|
||||
nonstop=false
|
||||
case "`uname`" in
|
||||
CYGWIN* )
|
||||
cygwin=true
|
||||
;;
|
||||
Darwin* )
|
||||
darwin=true
|
||||
;;
|
||||
MINGW* )
|
||||
msys=true
|
||||
;;
|
||||
NONSTOP* )
|
||||
nonstop=true
|
||||
;;
|
||||
esac
|
||||
|
||||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
# Determine the Java command to use to start the JVM.
|
||||
@ -89,7 +85,7 @@ location of your Java installation."
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
||||
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
|
||||
MAX_FD_LIMIT=`ulimit -H -n`
|
||||
if [ $? -eq 0 ] ; then
|
||||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||
@ -154,19 +150,11 @@ if $cygwin ; then
|
||||
esac
|
||||
fi
|
||||
|
||||
# Escape application args
|
||||
save () {
|
||||
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||
echo " "
|
||||
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
|
||||
function splitJvmOpts() {
|
||||
JVM_OPTS=("$@")
|
||||
}
|
||||
APP_ARGS=$(save "$@")
|
||||
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
|
||||
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
|
||||
|
||||
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
||||
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
||||
|
||||
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
|
||||
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
|
||||
cd "$(dirname "$0")"
|
||||
fi
|
||||
|
||||
exec "$JAVACMD" "$@"
|
||||
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
||||
|
14
bbb-lti/gradlew.bat
vendored
14
bbb-lti/gradlew.bat
vendored
@ -8,14 +8,14 @@
|
||||
@rem Set local scope for the variables with windows NT shell
|
||||
if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
set DEFAULT_JVM_OPTS=
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%" == "" set DIRNAME=.
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||
set DEFAULT_JVM_OPTS="-Xmx64m"
|
||||
|
||||
@rem Find java.exe
|
||||
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||
|
||||
@ -46,9 +46,10 @@ echo location of your Java installation.
|
||||
goto fail
|
||||
|
||||
:init
|
||||
@rem Get command-line arguments, handling Windows variants
|
||||
@rem Get command-line arguments, handling Windowz variants
|
||||
|
||||
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||
if "%@eval[2+2]" == "4" goto 4NT_args
|
||||
|
||||
:win9xME_args
|
||||
@rem Slurp the command line arguments.
|
||||
@ -59,6 +60,11 @@ set _SKIP=2
|
||||
if "x%~1" == "x" goto execute
|
||||
|
||||
set CMD_LINE_ARGS=%*
|
||||
goto execute
|
||||
|
||||
:4NT_args
|
||||
@rem Get arguments from the 4NT Shell from JP Software
|
||||
set CMD_LINE_ARGS=%$
|
||||
|
||||
:execute
|
||||
@rem Setup the command line
|
||||
|
@ -3,8 +3,8 @@ grails.project.class.dir = "target/classes"
|
||||
grails.project.test.class.dir = "target/test-classes"
|
||||
grails.project.test.reports.dir = "target/test-reports"
|
||||
grails.project.work.dir = "target/work"
|
||||
grails.project.target.level = 1.11
|
||||
grails.project.source.level = 1.11
|
||||
grails.project.target.level = 1.8
|
||||
grails.project.source.level = 1.8
|
||||
//grails.project.war.file = "target/${appName}-${appVersion}.war"
|
||||
|
||||
grails.project.fork = [
|
||||
|
@ -21,19 +21,10 @@ spring:
|
||||
check-template-location: false
|
||||
|
||||
# Spring Actuator Endpoints are Disabled by Default
|
||||
|
||||
endpoints:
|
||||
enabled: false
|
||||
jmx:
|
||||
unique-names: true
|
||||
devtools:
|
||||
restart:
|
||||
exclude:
|
||||
- grails-app/views/**
|
||||
- grails-app/i18n/**
|
||||
- grails-app/conf/**
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
enabled-by-default: false
|
||||
enabled: true
|
||||
|
||||
---
|
||||
grails:
|
||||
|
Loading…
Reference in New Issue
Block a user