aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel <pawel.kasperkiewicz@nokia.com>2021-05-14 10:00:19 +0200
committerPawel <pawel.kasperkiewicz@nokia.com>2021-05-14 10:00:19 +0200
commitb67399b143328e0f31ebf0f679f72c4fda062e3d (patch)
tree840e3367238096bb1f47a8cb12211e868b85e998
parentb7f2841a2a69d0253e10868869bba0efdcbdf131 (diff)
Temporary add mvn profile for enabling/disabling Prometheus metrics1.9.2
Issue-ID: DCAEGEN2-2683 Signed-off-by: Pawel <pawel.kasperkiewicz@nokia.com> Change-Id: I482098f0d9bfc71ada771c3dc74a43ee29423a73
-rw-r--r--Changelog.md3
-rw-r--r--pom.xml42
-rw-r--r--version.properties2
3 files changed, 29 insertions, 18 deletions
diff --git a/Changelog.md b/Changelog.md
index c95ba903..2dd8933c 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -52,3 +52,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [1.9.1] - 22/03/2021
- [DCAEGEN2-2683](https://jira.onap.org/browse/DCAEGEN2-2683) - Enable Spring Prometheus metrics end-point in VES
Remove mvn profile for enable/disable Prometheus metrics
+## [1.9.2] - 14/05/2021
+ - [DCAEGEN2-2683](https://jira.onap.org/browse/DCAEGEN2-2683) - Enable Spring Prometheus metrics end-point in VES
+ Temporary add mvn profile for enabling/disabling Prometheus metrics
diff --git a/pom.xml b/pom.xml
index c1884320..dd8bbc2d 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.1-SNAPSHOT</version>
+ <version>1.9.2-SNAPSHOT</version>
<name>dcaegen2-collectors-ves</name>
<description>VESCollector</description>
<properties>
@@ -208,6 +208,30 @@
</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>
@@ -266,22 +290,6 @@
</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>
diff --git a/version.properties b/version.properties
index e31b2def..aede13cb 100644
--- a/version.properties
+++ b/version.properties
@@ -1,6 +1,6 @@
major=1
minor=9
-patch=1
+patch=2
base_version=${major}.${minor}.${patch}
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT