Skip to content

Commit d659511

Browse files
committed
build: removes GraalVM standalone plugin as it's now bundled with core.
1 parent ef6f9f0 commit d659511

File tree

2 files changed

+5
-19
lines changed

2 files changed

+5
-19
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
'./mock/hbase/build/libs/imposter-plugin-mock-hbase.jar',
107107
'./mock/sfdc/build/libs/imposter-plugin-mock-sfdc.jar',
108108
'./mock/wiremock/build/libs/imposter-plugin-wiremock.jar',
109-
'./scripting/graalvm/build/distributions/imposter-plugin-js-graal.zip',
109+
'./scripting/nashorn/build/libs/imposter-plugin-js-nashorn.jar',
110110
'./store/dynamodb/build/libs/imposter-plugin-store-dynamodb.jar',
111111
'./store/graphql/build/libs/imposter-plugin-store-graphql.jar',
112112
'./store/redis/build/libs/imposter-plugin-store-redis.jar',

scripting/graalvm/build.gradle

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ dependencies {
1414
implementation project(':core:imposter-engine')
1515
implementation project(':scripting:scripting-common')
1616

17-
pluginImplementation "org.graalvm.js:js:$version_graal"
18-
pluginImplementation "org.graalvm.truffle:truffle-api:$version_graal"
19-
pluginImplementation "org.graalvm.js:js-scriptengine:$version_graal"
17+
implementation "org.graalvm.js:js:$version_graal"
18+
implementation "org.graalvm.truffle:truffle-api:$version_graal"
19+
implementation "org.graalvm.js:js-scriptengine:$version_graal"
2020

2121
// store proxy
22-
pluginImplementation project(':store:store-common')
22+
implementation project(':store:store-common')
2323

2424
// test
2525
testImplementation project(':test:test-utils')
@@ -74,17 +74,3 @@ compileTestKotlin {
7474
freeCompilerArgs = ["-Xjvm-default=all"]
7575
}
7676
}
77-
78-
task buildZip(type: Zip) {
79-
archiveName('imposter-plugin-js-graal.zip')
80-
from compileJava
81-
from processResources
82-
into('lib') {
83-
from(jar)
84-
from(project.configurations.pluginImplementation)
85-
}
86-
}
87-
88-
task dist {
89-
dependsOn buildZip
90-
}

0 commit comments

Comments
 (0)