aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorEdyta Krukowska <edyta.krukowska@nokia.com>2021-03-22 13:01:38 +0100
committerEdyta Krukowska <edyta.krukowska@nokia.com>2021-03-23 08:03:36 +0100
commit248f7071137dbb16e9362a06a86f744d19486052 (patch)
tree7ffac2873cb6152974b072f43e65ff6f3b8ed661 /pom.xml
parent22687ff3bf09afec08e15cdc0e3f3387b11e7fa1 (diff)
Enable prometheus metrics by default
Issue-ID: DCAEGEN2-2683 Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com> Change-Id: Ie8259fb5ac42fe012e19950fed3973a4f6b716cf
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml42
1 files changed, 17 insertions, 25 deletions
diff --git a/pom.xml b/pom.xml
index 044fcbe1..4f95c7ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
</parent>
<groupId>org.onap.dcaegen2.collectors.ves</groupId>
<artifactId>VESCollector</artifactId>
- <version>1.9.0-SNAPSHOT</version>
+ <version>1.9.1-SNAPSHOT</version>
<name>dcaegen2-collectors-ves</name>
<description>VESCollector</description>
<properties>
@@ -220,30 +220,6 @@
</build>
<profiles>
<profile>
- <id>buildForPerfTests</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <dependencies>
- <!-- Libraries related with performance tests-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>io.micrometer</groupId>
- <artifactId>micrometer-registry-prometheus</artifactId>
- <version>${micrometer.version}</version>
- </dependency>
- <dependency>
- <groupId>io.micrometer</groupId>
- <artifactId>micrometer-core</artifactId>
- <version>${micrometer.version}</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
<id>with-system-proxy</id>
<build>
<plugins>
@@ -302,6 +278,22 @@
</dependencies>
</dependencyManagement>
<dependencies>
+ <!-- Libraries related with performance tests-->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-actuator</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.micrometer</groupId>
+ <artifactId>micrometer-registry-prometheus</artifactId>
+ <version>${micrometer.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.micrometer</groupId>
+ <artifactId>micrometer-core</artifactId>
+ <version>${micrometer.version}</version>
+ </dependency>
<!-- JSON RELATED -->
<dependency>
<groupId>com.googlecode.json-simple</groupId>