@platforma-open/milaboratories.software-test-utils.runenv-java-stub 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/artifacts/main/archive_linux-aarch64.json +1 -0
- package/dist/artifacts/main/archive_linux-x64.json +1 -0
- package/dist/artifacts/main/archive_macosx-aarch64.json +1 -0
- package/dist/artifacts/main/archive_macosx-x64.json +1 -0
- package/dist/artifacts/main/archive_windows-x64.json +1 -0
- package/dist/tengo/software/main.sw.json +1 -0
- package/package.json +39 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"environment","platform":"linux-aarch64","registryURL":"https://bin.pl-open.science/","registryName":"platforma-open","remoteArtifactLocation":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-{os}-{arch}.tgz","uploadPath":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-linux-aarch64.tgz"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"environment","platform":"linux-x64","registryURL":"https://bin.pl-open.science/","registryName":"platforma-open","remoteArtifactLocation":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-{os}-{arch}.tgz","uploadPath":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-linux-x64.tgz"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"environment","platform":"macosx-aarch64","registryURL":"https://bin.pl-open.science/","registryName":"platforma-open","remoteArtifactLocation":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-{os}-{arch}.tgz","uploadPath":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-macosx-aarch64.tgz"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"environment","platform":"macosx-x64","registryURL":"https://bin.pl-open.science/","registryName":"platforma-open","remoteArtifactLocation":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-{os}-{arch}.tgz","uploadPath":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-macosx-x64.tgz"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"environment","platform":"windows-x64","registryURL":"https://bin.pl-open.science/","registryName":"platforma-open","remoteArtifactLocation":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-{os}-{arch}.tgz","uploadPath":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-windows-x64.tgz"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"@platforma-open/milaboratories.software-test-utils.runenv-java-stub:main","runEnv":{"type":"java","envVars":[],"registry":"platforma-open","package":"software/platforma-open/milaboratories.software-test-utils.runenv-java-stub/main/1.0.7-{os}-{arch}.tgz","binDir":"bin/"}}
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@platforma-open/milaboratories.software-test-utils.runenv-java-stub",
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Stub run environment that 'imitates' java",
|
|
5
|
+
"block-software": {
|
|
6
|
+
"entrypoints": {
|
|
7
|
+
"main": {
|
|
8
|
+
"environment": {
|
|
9
|
+
"artifact": {
|
|
10
|
+
"registry": "platforma-open",
|
|
11
|
+
"type": "environment",
|
|
12
|
+
"runtime": "java",
|
|
13
|
+
"roots": {
|
|
14
|
+
"linux-x64": "./build/linux-x64/",
|
|
15
|
+
"linux-aarch64": "./build/linux-aarch64/",
|
|
16
|
+
"macosx-x64": "./build/macosx-x64/",
|
|
17
|
+
"macosx-aarch64": "./build/macosx-aarch64/",
|
|
18
|
+
"windows-x64": "./build/windows-x64/"
|
|
19
|
+
},
|
|
20
|
+
"binDir": "bin/"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@platforma-sdk/package-builder": "^3.11.0"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [],
|
|
30
|
+
"author": "",
|
|
31
|
+
"files": [
|
|
32
|
+
"dist/"
|
|
33
|
+
],
|
|
34
|
+
"license": "UNLICENSED",
|
|
35
|
+
"scripts": {
|
|
36
|
+
"cleanup": "rm -rf ./pkg-*.tgz && rm -rf ./build/ && rm -rf ./dist/",
|
|
37
|
+
"build": "../../scripts/build.sh './main.go' 'bin/java' && pl-pkg build --all-platforms"
|
|
38
|
+
}
|
|
39
|
+
}
|