-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenedge-project.json
More file actions
62 lines (62 loc) · 1.65 KB
/
openedge-project.json
File metadata and controls
62 lines (62 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "Test Project",
"version": "1.0",
"charset": "utf-8",
"oeversion": "12.8",
"graphicalMode": false,
"extraParameters": "",
/* "procedures": [
{ "name": "src/dev/hooks.p", "mode": "persistent" }
], */
"buildPath": [
{ "type": "source", "path": "src/main/abl", "excludes": "sample/excl/**" },
{ "type": "source", "path": "src/test/abl" },
{ "type": "propath", "path": "src/main/resources" },
{ "type": "propath", "path": "${DLC}/tty/netlib/OpenEdge.Net.pl", "documentation": "src/dev/doc/netlib.json" },
{ "type": "propath", "path": "${DLC}/tty/OpenEdge.Core.pl", "documentation": "src/dev/doc/corelib.json" }
],
"buildDirectory": "target/build",
"numThreads": 1,
"dbConnections": [
{ "name": "sports", "connect": "-db target/db/sp2k -ld sports -RO", "schemaFile": "src/main/df/full/sports.df", "aliases": [ "foo", "bar"] }
],
"profiles": [
{
"name": "OE-11.7",
"inherits": "default",
"value": {
"oeversion": "11.7"
}
},
{
"name": "OE-12.2",
"inherits": "default",
"value": {
"oeversion": "12.2"
}
},
{
"name": "OE-13.0",
"inherits": "default",
"value": {
"oeversion": "13.0"
}
},
{
"name": "GUI-Mode",
"inherits": "default",
"value": {
"graphicalMode": true
}
},
{
"name": "DevContainer",
"inherits": "default",
"value": {
"dbConnections": [
{ "name": "sports", "connect": "-db sports2020 -ld sports -H dbserver -S 12345", "schemaFile": "src/main/df/full/sports.df", "aliases": [ "foo", "bar"] }
]
}
}
]
}