APACK
Packages with a class that implements ZIF_APACK_MANIFEST (the interface is automatically created at the initial start of abapGit) can define metadata that is interpreted by clients that support the APACK package and dependency management framework.
Info
APACK including dependencies is currently only supported by abapGit for ABAP Development Tools (ADT). Please also see the respective tutorial for details.
Such an APACK implementation class must reside in the top-level ABAP package which is serialized by abapGit so that it can be detected properly. After the class is instantiated, it needs to have the field ZIF_APACK_MANIFEST~DESCRIPTOR populated with the respective APACK metadata.
Note: Don't put any functionality in such implementation classes, only use them to advertise APACK metadata.
The metadata follows the POM format by Apache Maven and specifies additional information as well:
group_id: Unique name for your organization or project, e.g.github.com/abapGitartifact_id: The name for the project, needs to be unique together with the specifiedgroup_id, e.g.abapGitversion: The version of your project, should adhere to the semantic versioning concept, e.g.1.85repository_type: Currently fixed toabapGitas it's currently the only supported repository type and is set automatically during serializationgit_url: The URL where your main repository is located, e.g.https://github.com/abapGit/abapGit.gitdependencies: Optional, only needs to be filled if this project has dependencies to other projects. You only need to specifygroup_id,artifact_id,version, andgit_urlto identify the dependency.target_packageis ignored during serialization. Note: Be sure to specify thegit_urlfor each dependency properly as this is currently the only way how dependencies can automatically be resolved.
If such an implementation class is detected during the serialization process, a corresponding .apack-manifest.xml file will be created on the top level of the Git repository. This contains the APACK metadata information.
APACK in Namespaces
If your project is using a namespace, then using ZIF_APACK_MANIFEST will not work (since it's not part of the namespace, obviously). Simply copy ZIF_APACK_MANIFEST to /namespace/ZIF_APACK_MANIFEST and use this interface in your APACK implementation class (requires abapGit v1.126.0 or higher).
Transporting APACK implementation classes
The interface ZIF_APACK_MANIFEST is automatically created as a local object, i.e. in package $TMP. If you intend to transport projects containing an implementation class to follow-on systems, you either need to remove the implementation class from the transport or ensure that ZIF_APACK_MANIFEST is available on each follow-on system to avoid syntax errors. So, either let abapGit create it in all systems (don't do that on production) or change the package assignment to a package with the same transport target as your projects and transport them together.
Examples
See the sample code on GitHub (uses IF_APACK_MANIFEST which is exclusively available on the SAP Cloud Platform ABAP Environment. However, the descriptor format is compatible with ZIF_APACK_MANIFEST.):
- YY Data Service
- JSON ABAP Konverter (specifies a dependency on the YY Data Service)