Skip to content

Commit

Permalink
Merge pull request #141 from openbase/feature/140-improve-presence-de…
Browse files Browse the repository at this point in the history
…tector

Invalidate Presence after one hour without motion updates. Upgrade Toolchain.
  • Loading branch information
DivineThreepwood authored Apr 3, 2024
2 parents 1b1cf03 + dfb0589 commit 5e7ea56
Show file tree
Hide file tree
Showing 12 changed files with 528 additions and 493 deletions.
16 changes: 8 additions & 8 deletions buildSrc/src/main/kotlin/org.openbase.bco.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.util.Base64
import java.util.*

plugins {
`java-library`
`maven-publish`
kotlin("jvm")
signing
id ("com.adarshr.test-logger")
id("com.adarshr.test-logger")
}

repositories {
Expand All @@ -31,15 +31,15 @@ java {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect:1.7.0")
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0")
implementation("org.jetbrains.kotlin:kotlin-script-runtime:1.5.21")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.9.20")
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.20")
implementation("org.jetbrains.kotlin:kotlin-script-runtime:1.9.20")
testImplementation("org.junit.jupiter:junit-jupiter:[5.8,5.9-alpha)")
testImplementation ("org.junit.jupiter:junit-jupiter-api:[5.8,5.9-alpha)")
testImplementation("org.junit.jupiter:junit-jupiter-api:[5.8,5.9-alpha)")
testImplementation(Testing.mockK)
testImplementation("io.quarkus:quarkus-junit4-mock:_")
testImplementation("io.kotest:kotest-assertions-core-jvm:_")
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:[5.8,5.9-alpha)")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:[5.8,5.9-alpha)")
}

tasks.withType<KotlinCompile> {
Expand Down Expand Up @@ -123,7 +123,7 @@ signing {
?.let { it as String? }
?.let { Base64.getDecoder().decode(it) }
?.let { String(it) }
?:run {
?: run {
// Signing skipped because of missing private key.
return@signing
}
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
16 changes: 10 additions & 6 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ done
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit

# 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" "-Xms64m"'

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum

Expand Down Expand Up @@ -133,26 +130,29 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -197,6 +197,10 @@ if "$cygwin" || "$msys" ; then
done
fi


# 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" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
Expand Down
Loading

0 comments on commit 5e7ea56

Please sign in to comment.