Skip to content

Commit 904222a

Browse files
authored
Switch to /apmg/ namespace (#3)
1 parent b89e4fc commit 904222a

14 files changed

+336
-329
lines changed

.abapgit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<MASTER_LANGUAGE>E</MASTER_LANGUAGE>
77
<STARTING_FOLDER>/src/</STARTING_FOLDER>
88
<FOLDER_LOGIC>PREFIX</FOLDER_LOGIC>
9-
<VERSION_CONSTANT>ZIF_PACKAGE_JSON=&gt;C_VERSION</VERSION_CONSTANT>
9+
<VERSION_CONSTANT>/APMG/IF_PACKAGE_JSON=&gt;C_VERSION</VERSION_CONSTANT>
1010
</DATA>
1111
</asx:values>
1212
</asx:abap>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
</picture>
55
</div>
66

7-
![Version](https://img.shields.io/endpoint?url=https://shield.abappm.com/github/abapPM/abapPM-Package-JSON/src/zif_package_json.intf.abap/c_version&label=Version&color=blue)
7+
![Version](https://img.shields.io/endpoint?url=https://shield.abappm.com/github/abapPM/abapPM-Package-JSON/src/%2523apmg%2523if_package_json.intf.abap/c_version&label=Version&color=blue)
88

99
[![License](https://img.shields.io/github/license/abapPM/abapPM-Package-JSON?label=License&color=success)](https://github.com/abapPM/abapPM-Package-JSON/blob/main/LICENSE)
1010
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?color=success)](https://github.com/abapPM/.github/blob/main/CODE_OF_CONDUCT.md)
1111
[![REUSE Status](https://api.reuse.software/badge/github.com/abapPM/abapPM-Package-JSON)](https://api.reuse.software/info/github.com/abapPM/abapPM-Package-JSON)
1212

1313
# Package JSON for apm
1414

15-
Module used by apm to convert between package.abap.json and corresponding ABAP schemas. Persists data in `ZABAPPM` table.
15+
Module used by apm to convert between `package.abap.json` and corresponding ABAP schemas. Persists data in `ZABAPPM` table.
1616

1717
apm is a *package manager* 📦 for ABAP applications and modules, a *website* 🌐, and a *registry* 📑.
1818

@@ -42,12 +42,12 @@ All contributions are welcome! Read our [Contribution Guidelines](https://github
4242

4343
You can install the developer version of `@apm/package-json` using [abapGit](https://github.com/abapGit/abapGit) by creating a new online repository for `https://github.com/abapPM/abapPM-Package-JSON`.
4444

45-
Recommended SAP package: `$APM-PACKAGE-JSON`
45+
Recommended SAP package: `/APMG/APM-PACKAGE-JSON`
4646

4747
## About
4848

4949
Made with ❤ in Canada
5050

5151
Copyright 2025 apm.to Inc. <https://apm.to>
5252

53-
Follow [@marcf.be](https://bsky.app/profile/marcf.be) on Blueksy and [@marcfbe](https://linkedin.com/in/marcfbe) or LinkedIn
53+
Follow [@marcf.be](https://bsky.app/profile/marcf.be) on Bluesky and [@marcfbe](https://linkedin.com/in/marcfbe) or LinkedIn

abaplint.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"CLAS",
7373
"DEVC",
7474
"INTF",
75+
"NSPC",
7576
"PROG"
7677
]
7778
},
@@ -215,7 +216,7 @@
215216
"aqqu": "^Z",
216217
"aqsg": "^Z",
217218
"auth": "^Z",
218-
"clas": "^ZC(L|X)\\_PACKAGE_JSON",
219+
"clas": "^/APMG/C(L|X)_PACKAGE_JSON",
219220
"cmod": "^Z",
220221
"doma": "^Z",
221222
"dtel": "^Z",
@@ -227,11 +228,11 @@
227228
"idoc": "^Z",
228229
"ignoreNames": [],
229230
"ignorePatterns": [],
230-
"intf": "^ZIF\\_PACKAGE_JSON",
231+
"intf": "^/APMG/IF_PACKAGE_JSON",
231232
"msag": "^Z",
232233
"patternKind": "required",
233234
"pinf": "^Z",
234-
"prog": "^Z",
235+
"prog": "^/APMG/PACKAGE_JSON",
235236
"sfpf": "^Z",
236237
"sfpi": "^Z",
237238
"shlp": "^Z",
@@ -314,7 +315,7 @@
314315
"xml_consistency": true
315316
},
316317
"syntax": {
317-
"errorNamespace": "^(Z|Y|LCL_|TY_|LIF_)",
318+
"errorNamespace": "^(/APMG/|LCL_|TY_|LIF_)",
318319
"globalConstants": [],
319320
"globalMacros": [],
320321
"version": "v750"

src/#apmg#.nspc.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<abapGit version="v1.0.0" serializer="LCL_OBJECT_NSPC" serializer_version="v1.0.0">
3+
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
4+
<asx:values>
5+
<NSPC>
6+
<NAMESPACE>/APMG/</NAMESPACE>
7+
<REPLICENSE>41813564412598342476</REPLICENSE>
8+
</NSPC>
9+
<NSPC_TEXT>
10+
<SPRAS>E</SPRAS>
11+
<DESCRIPTN>apm</DESCRIPTN>
12+
<OWNER>apm.to Inc.</OWNER>
13+
</NSPC_TEXT>
14+
</asx:values>
15+
</asx:abap>
16+
</abapGit>

0 commit comments

Comments
 (0)