-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatlas.json
More file actions
47 lines (47 loc) · 2.39 KB
/
atlas.json
File metadata and controls
47 lines (47 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "voltscript-logging", // REQUIRED: Enter a short name for your VoltScript project, e.g. "Demo1"
"description": "Classes for creating and managing logs in voltscript", // REQUIRED: Enter a longer description, e.g. "My first demo project"
"displayName": "", // A longer name to refer to the project, e.g. "Demo 1"
"license": "Apache 2.0", // A license to publish the project under.
// If you want this to be used by others, Apache 2.0 or MIT are recommended
"publisher": "HCL Software", // Copyright owner
"authors": [ // REQUIRED: An array of authors, can be names or emails
"rocky.oliver@hcl.com",
"paulstephen.withers@hcl.com"
],
"library": "", // Name of the repo or folder container releases
"version":"1.0.1", // REQUIRED: Current version for this project, used with dependency management to find the modules
"sourceDir": "src", // REQUIRED: Directory where mainScripts are located
"testDir": "test", // Directory where unitTestScripts and integrationTestScripts are located
"libsDir": "libs", // Directory where VoltScript Library Modules and shared scripts are located
"vsesDir": "vses", // Directory where VoltScript Extensions are located
"mainScripts": [ // REQUIRED: Main scripts with Sub Initialize. Used to sync any additional files between
// sourceDir and testDir, if libsDir not set
"main.vss"
],
"unitTestScripts": [], // Unit test scripts. Used to sync any additional files between sourceDir and testDir, if libsDir not set
"integrationTestScripts": [], // Integration test scripts. Used to sync any additional files between
// sourceDir and testDir, if libsDir not set
"repositories": [ // Repositories in which to search for any dependencies
{
"id": "volt-mx-marketplace",
"type": "marketplace",
"url": "https://community.demo-hclvoltmx.com/marketplace/asset"
},
{
"id": "hcl-github",
"type": "github",
"url": "https://api.github.com/repos/HCL-TECH-SOFTWARE"
}
],
"dependencies": [
],
"testDependencies": [
{
"library": "voltscript-testing",
"module": "VoltScriptTesting.vss",
"version": "1.0.1",
"repository": "hcl-github"
}
]
}