diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-29 16:55:38 +0000 |
---|---|---|
committer | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-29 16:55:38 +0000 |
commit | 4fe4eab47918c6a221c6f5feeafd813f92482e45 (patch) | |
tree | 3b417df67c53d4b14385e69f6bb42465a0457a5d /dmi-stub/dmi-stub-app | |
parent | 3f72be5887883eb0a06f52a4f6dce395ac1b1eba (diff) |
[DMI] The expression ${parent.groupId} is deprecated
- The expression ${parent.groupId} is deprecated. Used ${project.parent.groupId} instead.
- For this reason, future Maven versions might no longer support
building such malformed projects.
Issue-ID: CPS-2470
Change-Id: Ibc6ac64c526fc8fc8eaf1e717eb2cd6c6b3f19e1
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Diffstat (limited to 'dmi-stub/dmi-stub-app')
-rw-r--r-- | dmi-stub/dmi-stub-app/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmi-stub/dmi-stub-app/pom.xml b/dmi-stub/dmi-stub-app/pom.xml index ba89f143..27464c80 100644 --- a/dmi-stub/dmi-stub-app/pom.xml +++ b/dmi-stub/dmi-stub-app/pom.xml @@ -62,7 +62,7 @@ </exclusion></exclusions> </dependency> <dependency> - <groupId>${parent.groupId}</groupId> + <groupId>${project.parent.groupId}</groupId> <artifactId>dmi-stub-service</artifactId> <version>${project.version}</version> <exclusions> |