connect function node with compiled function

This commit is contained in:
CaiHQ
2022-09-06 12:27:27 +08:00
parent 363a20049a
commit 56d140a2c7
2 changed files with 29 additions and 11 deletions

View File

@@ -6,7 +6,7 @@ plugins {
}
group = "org.bdware.sc"
version = "1.6.4"
version = "1.6.5"
repositories {
mavenCentral()
mavenLocal()
@@ -58,11 +58,11 @@ jar {
libs = libs + " libs/" + it.name
}
from {
// uncomment this when publish,
// while develop at local use "false"
// uncomment this when publish,
//while develop at local use "false"
configurations.runtimeClasspath.filter {
// it.getAbsolutePath().contains("/lib/")
false
it.getAbsolutePath().contains("/lib/")
// false
}.collect {
it.isDirectory() ? it : zipTree(it)
}