Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Nov 26, 2023
1 parent ccd7906 commit b06e98f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ repositories {
val kotlin_version = "1.9.20"
val jetty_version = "11.0.18"
val slf4j_version = "2.0.9"
val skyenet_version = "1.0.38"
val skyenet_version = "1.0.39"
dependencies {

implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.35")
implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.36")

implementation(group = "com.simiacryptus.skyenet", name = "core", version = skyenet_version)
implementation(group = "com.simiacryptus.skyenet", name = "webui", version = skyenet_version)

implementation("org.apache.httpcomponents.client5:httpclient5:5.2.1")
implementation(group = "org.apache.httpcomponents.client5", name = "httpclient5", version = "5.2.1")
implementation(group = "org.eclipse.jetty", name = "jetty-server", version = jetty_version)
implementation(group = "org.eclipse.jetty", name = "jetty-servlet", version = jetty_version)
implementation(group = "org.eclipse.jetty", name = "jetty-annotations", version = jetty_version)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

package com.simiacryptus.skyenet.heart

import com.simiacryptus.skyenet.core.Heart
import com.simiacryptus.skyenet.core.Interpreter
import java.lang.reflect.Method

@Suppress("unused")
open class WeakGroovyInterpreter(defs: java.util.Map<String, Object>) : Heart {
open class WeakGroovyInterpreter(val defs: java.util.Map<String, Object>) : Interpreter {
override fun symbols() = defs as Map<String, Any>

private val shell: Any
private val parseMethod: Method
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package com.simiacryptus.skyenet.heart

import com.simiacryptus.skyenet.core.Heart
import com.simiacryptus.skyenet.core.Interpreter
import java.lang.reflect.Method

@Suppress("unused")
open class WeakKotlinInterpreter(
defs: Map<String, Any> = mapOf(),
) : Heart {
val defs: Map<String, Any> = mapOf(),
) : Interpreter {
override fun symbols() = defs as Map<String, Any>

private val engine: Any

Expand Down

0 comments on commit b06e98f

Please sign in to comment.