diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-06-25 08:51:58 +0200 |
---|---|---|
committer | Fiete Ostkamp <fiete.ostkamp@telekom.de> | 2024-06-25 07:37:03 +0000 |
commit | 4ed4f241a6914093e7742b0f3779431e7b9cde68 (patch) | |
tree | d79d6b33952ea8a30afe6650469a60e25a374df0 /pom.xml | |
parent | 7119a1fef48ae1307baae1bace228fb6709bcc30 (diff) |
graphadmin uses wrong metrics-core dependency version
- downgrade metrics core dependency to fix classnotfoundexception that is thrown by janusgraph
Issue-ID: AAI-3895
Change-Id: I8562326c0a8a5eb910b2616f185e3c2c64183f6c
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -55,7 +55,7 @@ <docker.push.registry>localhost:5000</docker.push.registry> <aai.docker.version>1.0.0</aai.docker.version> <aai.schema.service.version>1.12.4</aai.schema.service.version> - <aai.common.version>1.14.2-SNAPSHOT</aai.common.version> + <aai.common.version>1.14.2</aai.common.version> <aai.build.directory>${project.build.directory}/${project.artifactId}-${project.version}-build/ </aai.build.directory> <aai.docker.namespace>onap</aai.docker.namespace> @@ -349,6 +349,13 @@ <artifactId>guava</artifactId> <version>25.0-jre</version> </dependency> + <!-- https://docs.datastax.com/en/developer/java-driver/3.5/manual/metrics/index.html#metrics-4-compatibility --> + <!-- remove this for janusgraph >= 0.6.0 --> + <dependency> + <groupId>io.dropwizard.metrics</groupId> + <artifactId>metrics-core</artifactId> + <version>3.2.6</version> + </dependency> </dependencies> </dependencyManagement> <dependencies> @@ -380,6 +387,10 @@ <artifactId>aai-core</artifactId> <exclusions> <exclusion> + <groupId>io.dropwizard.metrics</groupId> + <artifactId>metrics-jmx</artifactId> + </exclusion> + <exclusion> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-aaf-auth</artifactId> </exclusion> |