diff options
author | Liam Fallon <liam.fallon@est.tech> | 2021-12-02 12:38:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-12-02 12:38:23 +0000 |
commit | ee493a452b41c0306831509bbec62f93cf79e73a (patch) | |
tree | f9de4a9661e6841910299c82c5bc48b11dc8a48f /integration | |
parent | 5780bdf2564356663f9afca33bb7b144f080e475 (diff) | |
parent | 835c07cd5dbbdf3c50cd224342c3cf1cb4ce7007 (diff) |
Merge "Extract Prometheus Client libraries into parent POM"
Diffstat (limited to 'integration')
-rw-r--r-- | integration/pom.xml | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index 37053e8d..6b4a5d6f 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -59,6 +59,7 @@ <version.springfox>3.0.0</version.springfox> <version.jakarta-api>2.0.2</version.jakarta-api> <version.io.micrometer>1.7.3</version.io.micrometer> + <version.io.prometheus>0.11.0</version.io.prometheus> <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile> <repo.npm>https://nexus3.onap.org/repository/npm.public/npm/-/</repo.npm> <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry> @@ -198,6 +199,23 @@ <version>2.7.1</version> </dependency> + <!-- Prometheus Client Libraries --> + <dependency> + <groupId>io.prometheus</groupId> + <artifactId>simpleclient</artifactId> + <version>${version.io.prometheus}</version> + </dependency> + <dependency> + <groupId>io.prometheus</groupId> + <artifactId>simpleclient_hotspot</artifactId> + <version>${version.io.prometheus}</version> + </dependency> + <dependency> + <groupId>io.prometheus</groupId> + <artifactId>simpleclient_servlet</artifactId> + <version>${version.io.prometheus}</version> + </dependency> + <!-- Swagger Jersey2 JAXRS --> <dependency> <groupId>io.swagger</groupId> @@ -1266,4 +1284,4 @@ </plugin> </plugins> </build> -</project> +</project>
\ No newline at end of file |