Skip to content

Commit 6e53167

Browse files
committed
OMP-DOC-8: Improvements from PR review.
1 parent 533c4d8 commit 6e53167

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

documentation/developer-guide/modules/tooling-guide/pages/java-aspect-tooling.adoc

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,22 @@ https://www.vavr.io/vavr-docs/[Vavr User Guide] for more information.
2525
The tooling can be made available in two different versions: `release` and `milestone`. The release version represents a stable version of the product
2626
and can be referenced in your projects in the usual way from the Maven Central repository. There is also the possibility to have the intermediate builds
2727
made available, these are called `milestone` builds. Instead of Maven Central, these are released via
28-
https://github.com/orgs/OpenManufacturingPlatform/packages?repo_name=sds-sdk[GitHub Packages] mechanism.
29-
For more information about how to reference such artifacts in your projects, please refer to https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#installing-a-package[Github - Installing a package].
28+
https://github.com/orgs/OpenManufacturingPlatform/packages?repo_name=sds-sdk[GitHub Packages] mechanism. +
29+
To be able to use the artifacts released in this way in your projects, first the right repository has to be added to your `pom.xml` file:
30+
[source, xml]
31+
----
32+
<repositories>
33+
<repository>
34+
<id>github</id>
35+
<name>OpenManufacturingPlatform SDS-SDK</name>
36+
<url>https://maven.pkg.github.com/OpenManufacturingPlatform/sds-sdk</url>
37+
<releases><enabled>true</enabled></releases>
38+
<snapshots><enabled>true</enabled></snapshots>
39+
</repository>
40+
</repositories>
41+
----
42+
Then the desired dependencies can be referenced in the usual way. For an example, please refer to
43+
https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#installing-a-package[Github - Installing a package].
3044

3145
[[parsing-aspect-model-urns]]
3246
== Parsing Aspect Model URNs

0 commit comments

Comments
 (0)