diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2021-03-25 19:17:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-03-25 19:17:51 +0000 |
commit | ca44b9fe5569ff40a21fdc66cf841d5cdf2d224d (patch) | |
tree | d864f9d28a23f35a5ec883f66fba68b303857ec2 /pom.xml | |
parent | a301ed348b44b1b4ca91d2123c4480952a4777c7 (diff) | |
parent | 248f7071137dbb16e9362a06a86f744d19486052 (diff) |
Merge "Enable prometheus metrics by default"1.9.1
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 42 |
1 files changed, 17 insertions, 25 deletions
@@ -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>
@@ -208,30 +208,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>
@@ -290,6 +266,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.networknt</groupId>
|