File tree Expand file tree Collapse file tree 2 files changed +5
-19
lines changed Expand file tree Collapse file tree 2 files changed +5
-19
lines changed Original file line number Diff line number Diff 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',
Original file line number Diff line number Diff 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- }
You can’t perform that action at this time.
0 commit comments