diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-07-18 11:23:20 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-07-18 11:23:34 +0100 |
commit | b109c218ab7db28fd1cbe62c808496dfdedad809 (patch) | |
tree | aeb65f55c9cb138830e849d276cfd4ad3b861512 /packages | |
parent | 1eb5198939bd1d60665ff49e49763d0067c1bcb5 (diff) |
Fix incorrect naming on context plugins
This change fixes inconsistent naming on the context plugins
in APEX. All plugins should fillow the naming convention of
plugin-A.plugin-A.B.plugin.A.B.C and so on. Not following
this convention breaks the APEX documentation build.
Issue-ID: POLICY-954
Change-Id: I8aad4a28d143427e60017eaa119ee4f7ce9f5b3d
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'packages')
-rw-r--r-- | packages/apex-pdp-package-full/pom.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/apex-pdp-package-full/pom.xml b/packages/apex-pdp-package-full/pom.xml index 890f9f55e..2b05807e2 100644 --- a/packages/apex-pdp-package-full/pom.xml +++ b/packages/apex-pdp-package-full/pom.xml @@ -43,32 +43,32 @@ <!-- Plugins for Context Distribution --> <dependency> - <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.context-distribution</groupId> - <artifactId>context-distribution-hazelcast</artifactId> + <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-distribution</groupId> + <artifactId>plugins-context-distribution-hazelcast</artifactId> <version>${project.version}</version> </dependency> <dependency> - <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.context-distribution</groupId> - <artifactId>context-distribution-infinispan</artifactId> + <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-distribution</groupId> + <artifactId>plugins-context-distribution-infinispan</artifactId> <version>${project.version}</version> </dependency> <!-- Plugins for Context Locking --> <dependency> - <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.context-locking</groupId> - <artifactId>context-locking-hazelcast</artifactId> + <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-locking</groupId> + <artifactId>plugins-context-locking-hazelcast</artifactId> <version>${project.version}</version> </dependency> <dependency> - <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.context-locking</groupId> - <artifactId>context-locking-curator</artifactId> + <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-locking</groupId> + <artifactId>plugins-context-locking-curator</artifactId> <version>${project.version}</version> </dependency> <!-- Plugins for Context Schemas --> <dependency> - <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.context-schema</groupId> - <artifactId>context-schema-avro</artifactId> + <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-schema</groupId> + <artifactId>plugins-context-schema-avro</artifactId> <version>${project.version}</version> </dependency> |