From 41817c10a4fd3c7a1e62d220f68f28a76d2be096 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Thu, 30 Jan 2025 21:07:51 +0100 Subject: [PATCH 01/18] Upd infinispan --- central/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/central/pom.xml b/central/pom.xml index 9cfb7d586d..9b758111e4 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -91,12 +91,12 @@ org.infinispan infinispan-core - 15.0.11.Final + 15.0.12.Final org.infinispan infinispan-component-annotations - 15.0.11.Final + 15.0.12.Final compile From ec1a8ee8f8e6190ab84fe8a070fd2a6037927d03 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Thu, 30 Jan 2025 21:13:58 +0100 Subject: [PATCH 02/18] Fix do not return url content --- ui/src/main/java/org/glowroot/ui/AdminJsonService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/main/java/org/glowroot/ui/AdminJsonService.java b/ui/src/main/java/org/glowroot/ui/AdminJsonService.java index 2b83e05249..b1f8441b15 100644 --- a/ui/src/main/java/org/glowroot/ui/AdminJsonService.java +++ b/ui/src/main/java/org/glowroot/ui/AdminJsonService.java @@ -561,7 +561,7 @@ String testHttpProxy(@BindRequest HttpProxyConfigDto configDto) throws IOExcepti StringBuilder sb = new StringBuilder(); try (JsonGenerator jg = mapper.getFactory().createGenerator(CharStreams.asWriter(sb))) { jg.writeStartObject(); - jg.writeStringField("content", responseContent); + jg.writeStringField("content", "received http status 200 OK response"); jg.writeEndObject(); } return sb.toString(); From 5eb7aa7fcf4f80c36d61d710395d5c0521ee9106 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Sun, 27 Apr 2025 09:41:35 +0200 Subject: [PATCH 03/18] Upd infinispan --- central/pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/central/pom.xml b/central/pom.xml index 9b758111e4..548ca6d9b3 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -91,19 +91,19 @@ org.infinispan infinispan-core - 15.0.12.Final + 15.0.14.Final org.infinispan infinispan-component-annotations - 15.0.12.Final + 15.0.14.Final compile org.jgroups jgroups - 5.3.10.Final + 5.3.15.Final jakarta.servlet From 543926f884c9b254a064b1fa8f3c0b99723f07f0 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Sun, 27 Apr 2025 09:41:55 +0200 Subject: [PATCH 04/18] Upd dentrassi plugin --- central/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/central/pom.xml b/central/pom.xml index 548ca6d9b3..58e679187f 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -384,7 +384,7 @@ de.dentrassi.maven rpm - 1.8.0 + 1.12.0 true From 5ec1db617b73211b13752003751ee680c9c42f84 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Sun, 27 Apr 2025 09:42:50 +0200 Subject: [PATCH 05/18] Upd jdk 21.0.7 Dockerfile --- central/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/central/Dockerfile b/central/Dockerfile index 39c09960bb..291634a6ef 100644 --- a/central/Dockerfile +++ b/central/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:21.0.5_11-jdk-jammy AS builder +FROM eclipse-temurin:21.0.7_6-jdk-jammy AS builder COPY target/glowroot-central-*.zip /tmp/glowroot-central.zip RUN useradd --no-log-init -r -g root glowroot @@ -7,7 +7,7 @@ RUN unzip -d /tmp /tmp/glowroot-central.zip \ && chown -R glowroot:root /tmp/glowroot-central \ && chmod -R g+rw /tmp/glowroot-central -FROM eclipse-temurin:21.0.5_11-jdk-jammy +FROM eclipse-temurin:21.0.7_6-jdk-jammy COPY docker-entrypoint.sh /usr/local/bin/ COPY glowroot-central.sh /usr/local/bin/ From 7b48bf0862667fa60115e2404023e3cf4669e9ff Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Sun, 27 Apr 2025 09:44:21 +0200 Subject: [PATCH 06/18] Upd asm 9.8 --- agent/core/pom.xml | 2 +- agent/dist-maven-plugin/pom.xml | 4 ++-- agent/plugins/cassandra-plugin/pom.xml | 10 +++++----- agent/plugins/http-client-plugin/pom.xml | 2 +- agent/plugins/jaxws-plugin/pom.xml | 2 +- webdriver-tests/pom.xml | 10 +++++----- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/agent/core/pom.xml b/agent/core/pom.xml index 3e3feaa05c..84671fb324 100644 --- a/agent/core/pom.xml +++ b/agent/core/pom.xml @@ -17,7 +17,7 @@ Glowroot Agent Core (Unshaded) - 9.7.1 + 9.8 diff --git a/agent/dist-maven-plugin/pom.xml b/agent/dist-maven-plugin/pom.xml index c9922ce676..df90bc7264 100644 --- a/agent/dist-maven-plugin/pom.xml +++ b/agent/dist-maven-plugin/pom.xml @@ -65,13 +65,13 @@ org.ow2.asm asm - 9.7.1 + 9.8 org.ow2.asm asm-commons - 9.7.1 + 9.8 diff --git a/agent/plugins/cassandra-plugin/pom.xml b/agent/plugins/cassandra-plugin/pom.xml index e10c9edc28..80c4fb2471 100644 --- a/agent/plugins/cassandra-plugin/pom.xml +++ b/agent/plugins/cassandra-plugin/pom.xml @@ -76,35 +76,35 @@ org.ow2.asm asm - 9.7.1 + 9.8 test org.ow2.asm asm-commons - 9.7.1 + 9.8 test org.ow2.asm asm-tree - 9.7.1 + 9.8 test org.ow2.asm asm-util - 9.7.1 + 9.8 test org.ow2.asm asm-analysis - 9.7.1 + 9.8 test diff --git a/agent/plugins/http-client-plugin/pom.xml b/agent/plugins/http-client-plugin/pom.xml index 98da4ef717..4343e81adc 100644 --- a/agent/plugins/http-client-plugin/pom.xml +++ b/agent/plugins/http-client-plugin/pom.xml @@ -291,7 +291,7 @@ org.ow2.asm asm - 9.7.1 + 9.8 test diff --git a/agent/plugins/jaxws-plugin/pom.xml b/agent/plugins/jaxws-plugin/pom.xml index 3bc086ca77..7ed7292070 100644 --- a/agent/plugins/jaxws-plugin/pom.xml +++ b/agent/plugins/jaxws-plugin/pom.xml @@ -151,7 +151,7 @@ org.ow2.asm asm - 9.7.1 + 9.8 test diff --git a/webdriver-tests/pom.xml b/webdriver-tests/pom.xml index 83a2c7f602..1405c78c47 100644 --- a/webdriver-tests/pom.xml +++ b/webdriver-tests/pom.xml @@ -215,35 +215,35 @@ org.ow2.asm asm - 9.7.1 + 9.8 test org.ow2.asm asm-commons - 9.7.1 + 9.8 test org.ow2.asm asm-tree - 9.7.1 + 9.8 test org.ow2.asm asm-util - 9.7.1 + 9.8 test org.ow2.asm asm-analysis - 9.7.1 + 9.8 test From 6301010e9f28b3cf5b63344d36031f365430ecaf Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Sun, 27 Apr 2025 09:51:15 +0200 Subject: [PATCH 07/18] Upd grpc --- agent/shaded/central-https-windows/pom.xml | 4 ++-- pom.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/agent/shaded/central-https-windows/pom.xml b/agent/shaded/central-https-windows/pom.xml index a6528bb0f9..8d7a4da403 100644 --- a/agent/shaded/central-https-windows/pom.xml +++ b/agent/shaded/central-https-windows/pom.xml @@ -21,9 +21,9 @@ io.netty netty-tcnative-boringssl-static windows-x86_64 - - 2.0.61.Final + 2.0.70.Final diff --git a/pom.xml b/pom.xml index 5fd5741ae6..f5dcd8e623 100644 --- a/pom.xml +++ b/pom.xml @@ -91,11 +91,11 @@ - 1.65.1 + 1.72.0 3.25.3 3.25.3 - 4.1.100.Final + 4.1.110.Final 1.2.13 1.7.36 2.10.1 From 6ecd285eef8e55cb1ade4ab4fc44f1d7215aef31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Apr 2025 18:26:14 +0000 Subject: [PATCH 08/18] Release version 0.14.3 --- README.md | 2 +- agent/api/pom.xml | 2 +- agent/benchmarks/pom.xml | 2 +- agent/bytecode-api/pom.xml | 2 +- agent/core/pom.xml | 2 +- agent/dist-maven-plugin/pom.xml | 2 +- agent/dist/pom.xml | 2 +- agent/embedded/pom.xml | 2 +- agent/integration-tests/pom.xml | 2 +- agent/it-harness/pom.xml | 2 +- agent/plugin-api/pom.xml | 2 +- agent/plugins/camel-plugin/pom.xml | 2 +- agent/plugins/cassandra-plugin/pom.xml | 2 +- agent/plugins/ejb-plugin/pom.xml | 2 +- agent/plugins/elasticsearch-plugin/pom.xml | 2 +- agent/plugins/executor-plugin/pom.xml | 2 +- agent/plugins/grails-plugin/pom.xml | 2 +- agent/plugins/hibernate-plugin/pom.xml | 2 +- agent/plugins/http-client-plugin/pom.xml | 2 +- agent/plugins/jakarta-servlet-plugin/pom.xml | 2 +- agent/plugins/java-http-server-plugin/pom.xml | 2 +- agent/plugins/jaxrs-plugin/pom.xml | 2 +- agent/plugins/jaxws-plugin/pom.xml | 2 +- agent/plugins/jdbc-plugin/pom.xml | 2 +- agent/plugins/jms-plugin/pom.xml | 2 +- agent/plugins/jsf-plugin/pom.xml | 2 +- agent/plugins/jsp-plugin/pom.xml | 2 +- agent/plugins/kafka-plugin/pom.xml | 2 +- agent/plugins/logger-plugin/pom.xml | 2 +- agent/plugins/mail-plugin/pom.xml | 2 +- agent/plugins/mongodb-plugin/pom.xml | 2 +- agent/plugins/netty-plugin/pom.xml | 2 +- agent/plugins/play-plugin/pom.xml | 2 +- agent/plugins/quartz-plugin/pom.xml | 2 +- agent/plugins/redis-plugin/pom.xml | 2 +- agent/plugins/servlet-plugin/pom.xml | 2 +- agent/plugins/spring-plugin/pom.xml | 2 +- agent/plugins/struts-plugin/pom.xml | 2 +- agent/shaded/central-https-linux/pom.xml | 2 +- agent/shaded/central-https-osx/pom.xml | 2 +- agent/shaded/central-https-windows/pom.xml | 2 +- agent/shaded/core/pom.xml | 2 +- agent/shaded/embedded/pom.xml | 2 +- agent/shaded/it-harness/pom.xml | 2 +- agent/shaded/logging-logstash/pom.xml | 2 +- agent/ui-sandbox/pom.xml | 2 +- build/license-bundle/pom.xml | 2 +- build/multi-lib-tests/pom.xml | 2 +- central/pom.xml | 2 +- common/pom.xml | 2 +- common2/pom.xml | 2 +- pom.xml | 2 +- ui/pom.xml | 2 +- webdriver-tests/pom.xml | 2 +- wire-api/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/README.md b/README.md index e728f87fe1..7c8956d246 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Glowroot ## Quick start -1. Download and unzip [glowroot-0.14.3-beta.5-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.3-beta.5/glowroot-0.14.3-beta.5-dist.zip) +1. Download and unzip [glowroot-0.14.3-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.3/glowroot-0.14.3-dist.zip) 2. Add `-javaagent:path/to/glowroot.jar` to your application's JVM args [[where are my application server's JVM args?](https://github.com/glowroot/glowroot/wiki/Where-are-my-application-server's-JVM-args%3F)] 3. Check that the user account that runs the JVM has write access to the glowroot folder 4. Start your application diff --git a/agent/api/pom.xml b/agent/api/pom.xml index f26c976a6d..d5b99bdf89 100644 --- a/agent/api/pom.xml +++ b/agent/api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/benchmarks/pom.xml b/agent/benchmarks/pom.xml index f3d93b11ee..8320069981 100644 --- a/agent/benchmarks/pom.xml +++ b/agent/benchmarks/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/bytecode-api/pom.xml b/agent/bytecode-api/pom.xml index 4857ea43e1..679efcd1d4 100644 --- a/agent/bytecode-api/pom.xml +++ b/agent/bytecode-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/core/pom.xml b/agent/core/pom.xml index 84671fb324..ceafdc8f13 100644 --- a/agent/core/pom.xml +++ b/agent/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/dist-maven-plugin/pom.xml b/agent/dist-maven-plugin/pom.xml index df90bc7264..86ed863ae4 100644 --- a/agent/dist-maven-plugin/pom.xml +++ b/agent/dist-maven-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/dist/pom.xml b/agent/dist/pom.xml index 2189e2f8a7..334668cc89 100644 --- a/agent/dist/pom.xml +++ b/agent/dist/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/embedded/pom.xml b/agent/embedded/pom.xml index b5d30cda53..1b9526ca87 100644 --- a/agent/embedded/pom.xml +++ b/agent/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/integration-tests/pom.xml b/agent/integration-tests/pom.xml index 537059fc99..b93a8f3dbd 100644 --- a/agent/integration-tests/pom.xml +++ b/agent/integration-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/it-harness/pom.xml b/agent/it-harness/pom.xml index 36a41d622d..a128e358c5 100644 --- a/agent/it-harness/pom.xml +++ b/agent/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/plugin-api/pom.xml b/agent/plugin-api/pom.xml index 5d6f55003b..135eb539d7 100644 --- a/agent/plugin-api/pom.xml +++ b/agent/plugin-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/plugins/camel-plugin/pom.xml b/agent/plugins/camel-plugin/pom.xml index e8fbb0be3b..454e479fe4 100644 --- a/agent/plugins/camel-plugin/pom.xml +++ b/agent/plugins/camel-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/cassandra-plugin/pom.xml b/agent/plugins/cassandra-plugin/pom.xml index 80c4fb2471..120b44e0a4 100644 --- a/agent/plugins/cassandra-plugin/pom.xml +++ b/agent/plugins/cassandra-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/ejb-plugin/pom.xml b/agent/plugins/ejb-plugin/pom.xml index f33c79adc0..cac408bdf7 100644 --- a/agent/plugins/ejb-plugin/pom.xml +++ b/agent/plugins/ejb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/elasticsearch-plugin/pom.xml b/agent/plugins/elasticsearch-plugin/pom.xml index 63609de750..80961355bf 100644 --- a/agent/plugins/elasticsearch-plugin/pom.xml +++ b/agent/plugins/elasticsearch-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/executor-plugin/pom.xml b/agent/plugins/executor-plugin/pom.xml index 1b515ec533..c3e3a198ff 100644 --- a/agent/plugins/executor-plugin/pom.xml +++ b/agent/plugins/executor-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/grails-plugin/pom.xml b/agent/plugins/grails-plugin/pom.xml index 18637eec88..ce7b250042 100644 --- a/agent/plugins/grails-plugin/pom.xml +++ b/agent/plugins/grails-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/hibernate-plugin/pom.xml b/agent/plugins/hibernate-plugin/pom.xml index da1bed8fe7..42f66aa9ed 100644 --- a/agent/plugins/hibernate-plugin/pom.xml +++ b/agent/plugins/hibernate-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/http-client-plugin/pom.xml b/agent/plugins/http-client-plugin/pom.xml index 4343e81adc..b64fa1e0a9 100644 --- a/agent/plugins/http-client-plugin/pom.xml +++ b/agent/plugins/http-client-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jakarta-servlet-plugin/pom.xml b/agent/plugins/jakarta-servlet-plugin/pom.xml index 4026125f75..750ba8b2bc 100644 --- a/agent/plugins/jakarta-servlet-plugin/pom.xml +++ b/agent/plugins/jakarta-servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/java-http-server-plugin/pom.xml b/agent/plugins/java-http-server-plugin/pom.xml index 82ece56653..2798197033 100644 --- a/agent/plugins/java-http-server-plugin/pom.xml +++ b/agent/plugins/java-http-server-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jaxrs-plugin/pom.xml b/agent/plugins/jaxrs-plugin/pom.xml index f2446dbf0b..ffcc44119b 100644 --- a/agent/plugins/jaxrs-plugin/pom.xml +++ b/agent/plugins/jaxrs-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jaxws-plugin/pom.xml b/agent/plugins/jaxws-plugin/pom.xml index 7ed7292070..94f5c021ef 100644 --- a/agent/plugins/jaxws-plugin/pom.xml +++ b/agent/plugins/jaxws-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jdbc-plugin/pom.xml b/agent/plugins/jdbc-plugin/pom.xml index 040381849c..fb754154e7 100644 --- a/agent/plugins/jdbc-plugin/pom.xml +++ b/agent/plugins/jdbc-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jms-plugin/pom.xml b/agent/plugins/jms-plugin/pom.xml index face6c1d07..6652d9b73a 100644 --- a/agent/plugins/jms-plugin/pom.xml +++ b/agent/plugins/jms-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jsf-plugin/pom.xml b/agent/plugins/jsf-plugin/pom.xml index 9c84bc9abd..9759976337 100644 --- a/agent/plugins/jsf-plugin/pom.xml +++ b/agent/plugins/jsf-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jsp-plugin/pom.xml b/agent/plugins/jsp-plugin/pom.xml index 2071e8422b..dbf1e96a1b 100644 --- a/agent/plugins/jsp-plugin/pom.xml +++ b/agent/plugins/jsp-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/kafka-plugin/pom.xml b/agent/plugins/kafka-plugin/pom.xml index 0e447453e7..dfd6a30275 100644 --- a/agent/plugins/kafka-plugin/pom.xml +++ b/agent/plugins/kafka-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/logger-plugin/pom.xml b/agent/plugins/logger-plugin/pom.xml index 8d18613690..2929467d71 100644 --- a/agent/plugins/logger-plugin/pom.xml +++ b/agent/plugins/logger-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/mail-plugin/pom.xml b/agent/plugins/mail-plugin/pom.xml index dea13a0528..d54065dc9e 100644 --- a/agent/plugins/mail-plugin/pom.xml +++ b/agent/plugins/mail-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/mongodb-plugin/pom.xml b/agent/plugins/mongodb-plugin/pom.xml index 2b79b2d9bf..3a25d15e34 100644 --- a/agent/plugins/mongodb-plugin/pom.xml +++ b/agent/plugins/mongodb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/netty-plugin/pom.xml b/agent/plugins/netty-plugin/pom.xml index 7fb831d09a..3a1c2abb2f 100644 --- a/agent/plugins/netty-plugin/pom.xml +++ b/agent/plugins/netty-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/play-plugin/pom.xml b/agent/plugins/play-plugin/pom.xml index ac22316ef9..425b897266 100644 --- a/agent/plugins/play-plugin/pom.xml +++ b/agent/plugins/play-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/quartz-plugin/pom.xml b/agent/plugins/quartz-plugin/pom.xml index e870d62bce..791103a679 100644 --- a/agent/plugins/quartz-plugin/pom.xml +++ b/agent/plugins/quartz-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/redis-plugin/pom.xml b/agent/plugins/redis-plugin/pom.xml index 3a4490fa2c..1ae8d924b2 100644 --- a/agent/plugins/redis-plugin/pom.xml +++ b/agent/plugins/redis-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/servlet-plugin/pom.xml b/agent/plugins/servlet-plugin/pom.xml index b16028a413..222db46a93 100644 --- a/agent/plugins/servlet-plugin/pom.xml +++ b/agent/plugins/servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/spring-plugin/pom.xml b/agent/plugins/spring-plugin/pom.xml index 907eb34fce..72f9db81a1 100644 --- a/agent/plugins/spring-plugin/pom.xml +++ b/agent/plugins/spring-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/struts-plugin/pom.xml b/agent/plugins/struts-plugin/pom.xml index a448cf8553..86af5a61c5 100644 --- a/agent/plugins/struts-plugin/pom.xml +++ b/agent/plugins/struts-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/central-https-linux/pom.xml b/agent/shaded/central-https-linux/pom.xml index 9785627a4c..f60b58e606 100644 --- a/agent/shaded/central-https-linux/pom.xml +++ b/agent/shaded/central-https-linux/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/central-https-osx/pom.xml b/agent/shaded/central-https-osx/pom.xml index ceaf557212..2b78d14403 100644 --- a/agent/shaded/central-https-osx/pom.xml +++ b/agent/shaded/central-https-osx/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/central-https-windows/pom.xml b/agent/shaded/central-https-windows/pom.xml index 8d7a4da403..7f9465a2d2 100644 --- a/agent/shaded/central-https-windows/pom.xml +++ b/agent/shaded/central-https-windows/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/core/pom.xml b/agent/shaded/core/pom.xml index 87f97cc576..b2ab6e03bb 100644 --- a/agent/shaded/core/pom.xml +++ b/agent/shaded/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/embedded/pom.xml b/agent/shaded/embedded/pom.xml index 9730770c16..26e666f334 100644 --- a/agent/shaded/embedded/pom.xml +++ b/agent/shaded/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/it-harness/pom.xml b/agent/shaded/it-harness/pom.xml index c31f88fe2d..09b06b6ab0 100644 --- a/agent/shaded/it-harness/pom.xml +++ b/agent/shaded/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/logging-logstash/pom.xml b/agent/shaded/logging-logstash/pom.xml index 5468bfcb48..06a25e0326 100644 --- a/agent/shaded/logging-logstash/pom.xml +++ b/agent/shaded/logging-logstash/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/ui-sandbox/pom.xml b/agent/ui-sandbox/pom.xml index 5e5e0a5cd0..48c48bf533 100644 --- a/agent/ui-sandbox/pom.xml +++ b/agent/ui-sandbox/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/build/license-bundle/pom.xml b/build/license-bundle/pom.xml index 4d4fa0a294..99eb2e07cd 100644 --- a/build/license-bundle/pom.xml +++ b/build/license-bundle/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/build/multi-lib-tests/pom.xml b/build/multi-lib-tests/pom.xml index d73d023b08..189a286b89 100644 --- a/build/multi-lib-tests/pom.xml +++ b/build/multi-lib-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/central/pom.xml b/central/pom.xml index 58e679187f..eeb37845d9 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-central diff --git a/common/pom.xml b/common/pom.xml index 418f72eca0..08a084185a 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-common diff --git a/common2/pom.xml b/common2/pom.xml index f3fd95802e..4b92b76e5d 100644 --- a/common2/pom.xml +++ b/common2/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-common2 diff --git a/pom.xml b/pom.xml index f5dcd8e623..fcc59f0c28 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 pom Glowroot Parent Project diff --git a/ui/pom.xml b/ui/pom.xml index 5211309627..ff02c68135 100644 --- a/ui/pom.xml +++ b/ui/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-ui diff --git a/webdriver-tests/pom.xml b/webdriver-tests/pom.xml index 1405c78c47..1b79a78d35 100644 --- a/webdriver-tests/pom.xml +++ b/webdriver-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 .. diff --git a/wire-api/pom.xml b/wire-api/pom.xml index 1f3d0820ea..af2fb8a340 100644 --- a/wire-api/pom.xml +++ b/wire-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-wire-api From b4be0a0296d4f30f341412f0d26e6f7a8fc95a88 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Thu, 1 May 2025 17:31:53 +0200 Subject: [PATCH 09/18] Revert "Release version 0.14.3" This reverts commit 6ecd285eef8e55cb1ade4ab4fc44f1d7215aef31. --- README.md | 2 +- agent/api/pom.xml | 2 +- agent/benchmarks/pom.xml | 2 +- agent/bytecode-api/pom.xml | 2 +- agent/core/pom.xml | 2 +- agent/dist-maven-plugin/pom.xml | 2 +- agent/dist/pom.xml | 2 +- agent/embedded/pom.xml | 2 +- agent/integration-tests/pom.xml | 2 +- agent/it-harness/pom.xml | 2 +- agent/plugin-api/pom.xml | 2 +- agent/plugins/camel-plugin/pom.xml | 2 +- agent/plugins/cassandra-plugin/pom.xml | 2 +- agent/plugins/ejb-plugin/pom.xml | 2 +- agent/plugins/elasticsearch-plugin/pom.xml | 2 +- agent/plugins/executor-plugin/pom.xml | 2 +- agent/plugins/grails-plugin/pom.xml | 2 +- agent/plugins/hibernate-plugin/pom.xml | 2 +- agent/plugins/http-client-plugin/pom.xml | 2 +- agent/plugins/jakarta-servlet-plugin/pom.xml | 2 +- agent/plugins/java-http-server-plugin/pom.xml | 2 +- agent/plugins/jaxrs-plugin/pom.xml | 2 +- agent/plugins/jaxws-plugin/pom.xml | 2 +- agent/plugins/jdbc-plugin/pom.xml | 2 +- agent/plugins/jms-plugin/pom.xml | 2 +- agent/plugins/jsf-plugin/pom.xml | 2 +- agent/plugins/jsp-plugin/pom.xml | 2 +- agent/plugins/kafka-plugin/pom.xml | 2 +- agent/plugins/logger-plugin/pom.xml | 2 +- agent/plugins/mail-plugin/pom.xml | 2 +- agent/plugins/mongodb-plugin/pom.xml | 2 +- agent/plugins/netty-plugin/pom.xml | 2 +- agent/plugins/play-plugin/pom.xml | 2 +- agent/plugins/quartz-plugin/pom.xml | 2 +- agent/plugins/redis-plugin/pom.xml | 2 +- agent/plugins/servlet-plugin/pom.xml | 2 +- agent/plugins/spring-plugin/pom.xml | 2 +- agent/plugins/struts-plugin/pom.xml | 2 +- agent/shaded/central-https-linux/pom.xml | 2 +- agent/shaded/central-https-osx/pom.xml | 2 +- agent/shaded/central-https-windows/pom.xml | 2 +- agent/shaded/core/pom.xml | 2 +- agent/shaded/embedded/pom.xml | 2 +- agent/shaded/it-harness/pom.xml | 2 +- agent/shaded/logging-logstash/pom.xml | 2 +- agent/ui-sandbox/pom.xml | 2 +- build/license-bundle/pom.xml | 2 +- build/multi-lib-tests/pom.xml | 2 +- central/pom.xml | 2 +- common/pom.xml | 2 +- common2/pom.xml | 2 +- pom.xml | 2 +- ui/pom.xml | 2 +- webdriver-tests/pom.xml | 2 +- wire-api/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/README.md b/README.md index 7c8956d246..e728f87fe1 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Glowroot ## Quick start -1. Download and unzip [glowroot-0.14.3-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.3/glowroot-0.14.3-dist.zip) +1. Download and unzip [glowroot-0.14.3-beta.5-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.3-beta.5/glowroot-0.14.3-beta.5-dist.zip) 2. Add `-javaagent:path/to/glowroot.jar` to your application's JVM args [[where are my application server's JVM args?](https://github.com/glowroot/glowroot/wiki/Where-are-my-application-server's-JVM-args%3F)] 3. Check that the user account that runs the JVM has write access to the glowroot folder 4. Start your application diff --git a/agent/api/pom.xml b/agent/api/pom.xml index d5b99bdf89..f26c976a6d 100644 --- a/agent/api/pom.xml +++ b/agent/api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/benchmarks/pom.xml b/agent/benchmarks/pom.xml index 8320069981..f3d93b11ee 100644 --- a/agent/benchmarks/pom.xml +++ b/agent/benchmarks/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/bytecode-api/pom.xml b/agent/bytecode-api/pom.xml index 679efcd1d4..4857ea43e1 100644 --- a/agent/bytecode-api/pom.xml +++ b/agent/bytecode-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/core/pom.xml b/agent/core/pom.xml index ceafdc8f13..84671fb324 100644 --- a/agent/core/pom.xml +++ b/agent/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/dist-maven-plugin/pom.xml b/agent/dist-maven-plugin/pom.xml index 86ed863ae4..df90bc7264 100644 --- a/agent/dist-maven-plugin/pom.xml +++ b/agent/dist-maven-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/dist/pom.xml b/agent/dist/pom.xml index 334668cc89..2189e2f8a7 100644 --- a/agent/dist/pom.xml +++ b/agent/dist/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/embedded/pom.xml b/agent/embedded/pom.xml index 1b9526ca87..b5d30cda53 100644 --- a/agent/embedded/pom.xml +++ b/agent/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/integration-tests/pom.xml b/agent/integration-tests/pom.xml index b93a8f3dbd..537059fc99 100644 --- a/agent/integration-tests/pom.xml +++ b/agent/integration-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/it-harness/pom.xml b/agent/it-harness/pom.xml index a128e358c5..36a41d622d 100644 --- a/agent/it-harness/pom.xml +++ b/agent/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/plugin-api/pom.xml b/agent/plugin-api/pom.xml index 135eb539d7..5d6f55003b 100644 --- a/agent/plugin-api/pom.xml +++ b/agent/plugin-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/agent/plugins/camel-plugin/pom.xml b/agent/plugins/camel-plugin/pom.xml index 454e479fe4..e8fbb0be3b 100644 --- a/agent/plugins/camel-plugin/pom.xml +++ b/agent/plugins/camel-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/cassandra-plugin/pom.xml b/agent/plugins/cassandra-plugin/pom.xml index 120b44e0a4..80c4fb2471 100644 --- a/agent/plugins/cassandra-plugin/pom.xml +++ b/agent/plugins/cassandra-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/ejb-plugin/pom.xml b/agent/plugins/ejb-plugin/pom.xml index cac408bdf7..f33c79adc0 100644 --- a/agent/plugins/ejb-plugin/pom.xml +++ b/agent/plugins/ejb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/elasticsearch-plugin/pom.xml b/agent/plugins/elasticsearch-plugin/pom.xml index 80961355bf..63609de750 100644 --- a/agent/plugins/elasticsearch-plugin/pom.xml +++ b/agent/plugins/elasticsearch-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/executor-plugin/pom.xml b/agent/plugins/executor-plugin/pom.xml index c3e3a198ff..1b515ec533 100644 --- a/agent/plugins/executor-plugin/pom.xml +++ b/agent/plugins/executor-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/grails-plugin/pom.xml b/agent/plugins/grails-plugin/pom.xml index ce7b250042..18637eec88 100644 --- a/agent/plugins/grails-plugin/pom.xml +++ b/agent/plugins/grails-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/hibernate-plugin/pom.xml b/agent/plugins/hibernate-plugin/pom.xml index 42f66aa9ed..da1bed8fe7 100644 --- a/agent/plugins/hibernate-plugin/pom.xml +++ b/agent/plugins/hibernate-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/http-client-plugin/pom.xml b/agent/plugins/http-client-plugin/pom.xml index b64fa1e0a9..4343e81adc 100644 --- a/agent/plugins/http-client-plugin/pom.xml +++ b/agent/plugins/http-client-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/jakarta-servlet-plugin/pom.xml b/agent/plugins/jakarta-servlet-plugin/pom.xml index 750ba8b2bc..4026125f75 100644 --- a/agent/plugins/jakarta-servlet-plugin/pom.xml +++ b/agent/plugins/jakarta-servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/java-http-server-plugin/pom.xml b/agent/plugins/java-http-server-plugin/pom.xml index 2798197033..82ece56653 100644 --- a/agent/plugins/java-http-server-plugin/pom.xml +++ b/agent/plugins/java-http-server-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/jaxrs-plugin/pom.xml b/agent/plugins/jaxrs-plugin/pom.xml index ffcc44119b..f2446dbf0b 100644 --- a/agent/plugins/jaxrs-plugin/pom.xml +++ b/agent/plugins/jaxrs-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/jaxws-plugin/pom.xml b/agent/plugins/jaxws-plugin/pom.xml index 94f5c021ef..7ed7292070 100644 --- a/agent/plugins/jaxws-plugin/pom.xml +++ b/agent/plugins/jaxws-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/jdbc-plugin/pom.xml b/agent/plugins/jdbc-plugin/pom.xml index fb754154e7..040381849c 100644 --- a/agent/plugins/jdbc-plugin/pom.xml +++ b/agent/plugins/jdbc-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/jms-plugin/pom.xml b/agent/plugins/jms-plugin/pom.xml index 6652d9b73a..face6c1d07 100644 --- a/agent/plugins/jms-plugin/pom.xml +++ b/agent/plugins/jms-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/jsf-plugin/pom.xml b/agent/plugins/jsf-plugin/pom.xml index 9759976337..9c84bc9abd 100644 --- a/agent/plugins/jsf-plugin/pom.xml +++ b/agent/plugins/jsf-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/jsp-plugin/pom.xml b/agent/plugins/jsp-plugin/pom.xml index dbf1e96a1b..2071e8422b 100644 --- a/agent/plugins/jsp-plugin/pom.xml +++ b/agent/plugins/jsp-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/kafka-plugin/pom.xml b/agent/plugins/kafka-plugin/pom.xml index dfd6a30275..0e447453e7 100644 --- a/agent/plugins/kafka-plugin/pom.xml +++ b/agent/plugins/kafka-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/logger-plugin/pom.xml b/agent/plugins/logger-plugin/pom.xml index 2929467d71..8d18613690 100644 --- a/agent/plugins/logger-plugin/pom.xml +++ b/agent/plugins/logger-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/mail-plugin/pom.xml b/agent/plugins/mail-plugin/pom.xml index d54065dc9e..dea13a0528 100644 --- a/agent/plugins/mail-plugin/pom.xml +++ b/agent/plugins/mail-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/mongodb-plugin/pom.xml b/agent/plugins/mongodb-plugin/pom.xml index 3a25d15e34..2b79b2d9bf 100644 --- a/agent/plugins/mongodb-plugin/pom.xml +++ b/agent/plugins/mongodb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/netty-plugin/pom.xml b/agent/plugins/netty-plugin/pom.xml index 3a1c2abb2f..7fb831d09a 100644 --- a/agent/plugins/netty-plugin/pom.xml +++ b/agent/plugins/netty-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/play-plugin/pom.xml b/agent/plugins/play-plugin/pom.xml index 425b897266..ac22316ef9 100644 --- a/agent/plugins/play-plugin/pom.xml +++ b/agent/plugins/play-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/quartz-plugin/pom.xml b/agent/plugins/quartz-plugin/pom.xml index 791103a679..e870d62bce 100644 --- a/agent/plugins/quartz-plugin/pom.xml +++ b/agent/plugins/quartz-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/redis-plugin/pom.xml b/agent/plugins/redis-plugin/pom.xml index 1ae8d924b2..3a4490fa2c 100644 --- a/agent/plugins/redis-plugin/pom.xml +++ b/agent/plugins/redis-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/servlet-plugin/pom.xml b/agent/plugins/servlet-plugin/pom.xml index 222db46a93..b16028a413 100644 --- a/agent/plugins/servlet-plugin/pom.xml +++ b/agent/plugins/servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/spring-plugin/pom.xml b/agent/plugins/spring-plugin/pom.xml index 72f9db81a1..907eb34fce 100644 --- a/agent/plugins/spring-plugin/pom.xml +++ b/agent/plugins/spring-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/plugins/struts-plugin/pom.xml b/agent/plugins/struts-plugin/pom.xml index 86af5a61c5..a448cf8553 100644 --- a/agent/plugins/struts-plugin/pom.xml +++ b/agent/plugins/struts-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-linux/pom.xml b/agent/shaded/central-https-linux/pom.xml index f60b58e606..9785627a4c 100644 --- a/agent/shaded/central-https-linux/pom.xml +++ b/agent/shaded/central-https-linux/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-osx/pom.xml b/agent/shaded/central-https-osx/pom.xml index 2b78d14403..ceaf557212 100644 --- a/agent/shaded/central-https-osx/pom.xml +++ b/agent/shaded/central-https-osx/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-windows/pom.xml b/agent/shaded/central-https-windows/pom.xml index 7f9465a2d2..8d7a4da403 100644 --- a/agent/shaded/central-https-windows/pom.xml +++ b/agent/shaded/central-https-windows/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/shaded/core/pom.xml b/agent/shaded/core/pom.xml index b2ab6e03bb..87f97cc576 100644 --- a/agent/shaded/core/pom.xml +++ b/agent/shaded/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/shaded/embedded/pom.xml b/agent/shaded/embedded/pom.xml index 26e666f334..9730770c16 100644 --- a/agent/shaded/embedded/pom.xml +++ b/agent/shaded/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/shaded/it-harness/pom.xml b/agent/shaded/it-harness/pom.xml index 09b06b6ab0..c31f88fe2d 100644 --- a/agent/shaded/it-harness/pom.xml +++ b/agent/shaded/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/shaded/logging-logstash/pom.xml b/agent/shaded/logging-logstash/pom.xml index 06a25e0326..5468bfcb48 100644 --- a/agent/shaded/logging-logstash/pom.xml +++ b/agent/shaded/logging-logstash/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../../.. diff --git a/agent/ui-sandbox/pom.xml b/agent/ui-sandbox/pom.xml index 48c48bf533..5e5e0a5cd0 100644 --- a/agent/ui-sandbox/pom.xml +++ b/agent/ui-sandbox/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/build/license-bundle/pom.xml b/build/license-bundle/pom.xml index 99eb2e07cd..4d4fa0a294 100644 --- a/build/license-bundle/pom.xml +++ b/build/license-bundle/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/build/multi-lib-tests/pom.xml b/build/multi-lib-tests/pom.xml index 189a286b89..d73d023b08 100644 --- a/build/multi-lib-tests/pom.xml +++ b/build/multi-lib-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT ../.. diff --git a/central/pom.xml b/central/pom.xml index eeb37845d9..58e679187f 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT glowroot-central diff --git a/common/pom.xml b/common/pom.xml index 08a084185a..418f72eca0 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT glowroot-common diff --git a/common2/pom.xml b/common2/pom.xml index 4b92b76e5d..f3fd95802e 100644 --- a/common2/pom.xml +++ b/common2/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT glowroot-common2 diff --git a/pom.xml b/pom.xml index fcc59f0c28..f5dcd8e623 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT pom Glowroot Parent Project diff --git a/ui/pom.xml b/ui/pom.xml index ff02c68135..5211309627 100644 --- a/ui/pom.xml +++ b/ui/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT glowroot-ui diff --git a/webdriver-tests/pom.xml b/webdriver-tests/pom.xml index 1b79a78d35..1405c78c47 100644 --- a/webdriver-tests/pom.xml +++ b/webdriver-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT .. diff --git a/wire-api/pom.xml b/wire-api/pom.xml index af2fb8a340..1f3d0820ea 100644 --- a/wire-api/pom.xml +++ b/wire-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.3-SNAPSHOT glowroot-wire-api From 172d28e842903859c07ae650083f0df8017bf6bd Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Thu, 1 May 2025 17:32:23 +0200 Subject: [PATCH 10/18] Tmp deactivate depoy to maven repository --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eed8995067..8c6c68efa9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,7 +85,7 @@ jobs: # gpg_key_id is needed for signing the rpm for the yum repository (see glowroot-central/pom.xml) gpg_key_id=$(gpg --list-keys --with-colons | grep ^pub | cut -d':' -f5 | tail -c 8) - mvn clean deploy -pl :glowroot-parent,:glowroot-agent-api,:glowroot-agent-plugin-api,:glowroot-agent-it-harness,:glowroot-agent,:glowroot-central \ + mvn clean install -pl :glowroot-parent,:glowroot-agent-api,:glowroot-agent-plugin-api,:glowroot-agent-it-harness,:glowroot-agent,:glowroot-central \ -Pjavadoc \ -Prelease \ -Dglowroot.build.commit=$(git rev-parse HEAD) \ From 05d3be0aeb36f9ef158513847f9552a7af94d7d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 May 2025 17:42:05 +0000 Subject: [PATCH 11/18] Release version 0.14.3 --- README.md | 2 +- agent/api/pom.xml | 2 +- agent/benchmarks/pom.xml | 2 +- agent/bytecode-api/pom.xml | 2 +- agent/core/pom.xml | 2 +- agent/dist-maven-plugin/pom.xml | 2 +- agent/dist/pom.xml | 2 +- agent/embedded/pom.xml | 2 +- agent/integration-tests/pom.xml | 2 +- agent/it-harness/pom.xml | 2 +- agent/plugin-api/pom.xml | 2 +- agent/plugins/camel-plugin/pom.xml | 2 +- agent/plugins/cassandra-plugin/pom.xml | 2 +- agent/plugins/ejb-plugin/pom.xml | 2 +- agent/plugins/elasticsearch-plugin/pom.xml | 2 +- agent/plugins/executor-plugin/pom.xml | 2 +- agent/plugins/grails-plugin/pom.xml | 2 +- agent/plugins/hibernate-plugin/pom.xml | 2 +- agent/plugins/http-client-plugin/pom.xml | 2 +- agent/plugins/jakarta-servlet-plugin/pom.xml | 2 +- agent/plugins/java-http-server-plugin/pom.xml | 2 +- agent/plugins/jaxrs-plugin/pom.xml | 2 +- agent/plugins/jaxws-plugin/pom.xml | 2 +- agent/plugins/jdbc-plugin/pom.xml | 2 +- agent/plugins/jms-plugin/pom.xml | 2 +- agent/plugins/jsf-plugin/pom.xml | 2 +- agent/plugins/jsp-plugin/pom.xml | 2 +- agent/plugins/kafka-plugin/pom.xml | 2 +- agent/plugins/logger-plugin/pom.xml | 2 +- agent/plugins/mail-plugin/pom.xml | 2 +- agent/plugins/mongodb-plugin/pom.xml | 2 +- agent/plugins/netty-plugin/pom.xml | 2 +- agent/plugins/play-plugin/pom.xml | 2 +- agent/plugins/quartz-plugin/pom.xml | 2 +- agent/plugins/redis-plugin/pom.xml | 2 +- agent/plugins/servlet-plugin/pom.xml | 2 +- agent/plugins/spring-plugin/pom.xml | 2 +- agent/plugins/struts-plugin/pom.xml | 2 +- agent/shaded/central-https-linux/pom.xml | 2 +- agent/shaded/central-https-osx/pom.xml | 2 +- agent/shaded/central-https-windows/pom.xml | 2 +- agent/shaded/core/pom.xml | 2 +- agent/shaded/embedded/pom.xml | 2 +- agent/shaded/it-harness/pom.xml | 2 +- agent/shaded/logging-logstash/pom.xml | 2 +- agent/ui-sandbox/pom.xml | 2 +- build/license-bundle/pom.xml | 2 +- build/multi-lib-tests/pom.xml | 2 +- central/pom.xml | 2 +- common/pom.xml | 2 +- common2/pom.xml | 2 +- pom.xml | 2 +- ui/pom.xml | 2 +- webdriver-tests/pom.xml | 2 +- wire-api/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/README.md b/README.md index e728f87fe1..7c8956d246 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Glowroot ## Quick start -1. Download and unzip [glowroot-0.14.3-beta.5-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.3-beta.5/glowroot-0.14.3-beta.5-dist.zip) +1. Download and unzip [glowroot-0.14.3-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.3/glowroot-0.14.3-dist.zip) 2. Add `-javaagent:path/to/glowroot.jar` to your application's JVM args [[where are my application server's JVM args?](https://github.com/glowroot/glowroot/wiki/Where-are-my-application-server's-JVM-args%3F)] 3. Check that the user account that runs the JVM has write access to the glowroot folder 4. Start your application diff --git a/agent/api/pom.xml b/agent/api/pom.xml index f26c976a6d..d5b99bdf89 100644 --- a/agent/api/pom.xml +++ b/agent/api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/benchmarks/pom.xml b/agent/benchmarks/pom.xml index f3d93b11ee..8320069981 100644 --- a/agent/benchmarks/pom.xml +++ b/agent/benchmarks/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/bytecode-api/pom.xml b/agent/bytecode-api/pom.xml index 4857ea43e1..679efcd1d4 100644 --- a/agent/bytecode-api/pom.xml +++ b/agent/bytecode-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/core/pom.xml b/agent/core/pom.xml index 84671fb324..ceafdc8f13 100644 --- a/agent/core/pom.xml +++ b/agent/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/dist-maven-plugin/pom.xml b/agent/dist-maven-plugin/pom.xml index df90bc7264..86ed863ae4 100644 --- a/agent/dist-maven-plugin/pom.xml +++ b/agent/dist-maven-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/dist/pom.xml b/agent/dist/pom.xml index 2189e2f8a7..334668cc89 100644 --- a/agent/dist/pom.xml +++ b/agent/dist/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/embedded/pom.xml b/agent/embedded/pom.xml index b5d30cda53..1b9526ca87 100644 --- a/agent/embedded/pom.xml +++ b/agent/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/integration-tests/pom.xml b/agent/integration-tests/pom.xml index 537059fc99..b93a8f3dbd 100644 --- a/agent/integration-tests/pom.xml +++ b/agent/integration-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/it-harness/pom.xml b/agent/it-harness/pom.xml index 36a41d622d..a128e358c5 100644 --- a/agent/it-harness/pom.xml +++ b/agent/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/plugin-api/pom.xml b/agent/plugin-api/pom.xml index 5d6f55003b..135eb539d7 100644 --- a/agent/plugin-api/pom.xml +++ b/agent/plugin-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/agent/plugins/camel-plugin/pom.xml b/agent/plugins/camel-plugin/pom.xml index e8fbb0be3b..454e479fe4 100644 --- a/agent/plugins/camel-plugin/pom.xml +++ b/agent/plugins/camel-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/cassandra-plugin/pom.xml b/agent/plugins/cassandra-plugin/pom.xml index 80c4fb2471..120b44e0a4 100644 --- a/agent/plugins/cassandra-plugin/pom.xml +++ b/agent/plugins/cassandra-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/ejb-plugin/pom.xml b/agent/plugins/ejb-plugin/pom.xml index f33c79adc0..cac408bdf7 100644 --- a/agent/plugins/ejb-plugin/pom.xml +++ b/agent/plugins/ejb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/elasticsearch-plugin/pom.xml b/agent/plugins/elasticsearch-plugin/pom.xml index 63609de750..80961355bf 100644 --- a/agent/plugins/elasticsearch-plugin/pom.xml +++ b/agent/plugins/elasticsearch-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/executor-plugin/pom.xml b/agent/plugins/executor-plugin/pom.xml index 1b515ec533..c3e3a198ff 100644 --- a/agent/plugins/executor-plugin/pom.xml +++ b/agent/plugins/executor-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/grails-plugin/pom.xml b/agent/plugins/grails-plugin/pom.xml index 18637eec88..ce7b250042 100644 --- a/agent/plugins/grails-plugin/pom.xml +++ b/agent/plugins/grails-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/hibernate-plugin/pom.xml b/agent/plugins/hibernate-plugin/pom.xml index da1bed8fe7..42f66aa9ed 100644 --- a/agent/plugins/hibernate-plugin/pom.xml +++ b/agent/plugins/hibernate-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/http-client-plugin/pom.xml b/agent/plugins/http-client-plugin/pom.xml index 4343e81adc..b64fa1e0a9 100644 --- a/agent/plugins/http-client-plugin/pom.xml +++ b/agent/plugins/http-client-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jakarta-servlet-plugin/pom.xml b/agent/plugins/jakarta-servlet-plugin/pom.xml index 4026125f75..750ba8b2bc 100644 --- a/agent/plugins/jakarta-servlet-plugin/pom.xml +++ b/agent/plugins/jakarta-servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/java-http-server-plugin/pom.xml b/agent/plugins/java-http-server-plugin/pom.xml index 82ece56653..2798197033 100644 --- a/agent/plugins/java-http-server-plugin/pom.xml +++ b/agent/plugins/java-http-server-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jaxrs-plugin/pom.xml b/agent/plugins/jaxrs-plugin/pom.xml index f2446dbf0b..ffcc44119b 100644 --- a/agent/plugins/jaxrs-plugin/pom.xml +++ b/agent/plugins/jaxrs-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jaxws-plugin/pom.xml b/agent/plugins/jaxws-plugin/pom.xml index 7ed7292070..94f5c021ef 100644 --- a/agent/plugins/jaxws-plugin/pom.xml +++ b/agent/plugins/jaxws-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jdbc-plugin/pom.xml b/agent/plugins/jdbc-plugin/pom.xml index 040381849c..fb754154e7 100644 --- a/agent/plugins/jdbc-plugin/pom.xml +++ b/agent/plugins/jdbc-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jms-plugin/pom.xml b/agent/plugins/jms-plugin/pom.xml index face6c1d07..6652d9b73a 100644 --- a/agent/plugins/jms-plugin/pom.xml +++ b/agent/plugins/jms-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jsf-plugin/pom.xml b/agent/plugins/jsf-plugin/pom.xml index 9c84bc9abd..9759976337 100644 --- a/agent/plugins/jsf-plugin/pom.xml +++ b/agent/plugins/jsf-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/jsp-plugin/pom.xml b/agent/plugins/jsp-plugin/pom.xml index 2071e8422b..dbf1e96a1b 100644 --- a/agent/plugins/jsp-plugin/pom.xml +++ b/agent/plugins/jsp-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/kafka-plugin/pom.xml b/agent/plugins/kafka-plugin/pom.xml index 0e447453e7..dfd6a30275 100644 --- a/agent/plugins/kafka-plugin/pom.xml +++ b/agent/plugins/kafka-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/logger-plugin/pom.xml b/agent/plugins/logger-plugin/pom.xml index 8d18613690..2929467d71 100644 --- a/agent/plugins/logger-plugin/pom.xml +++ b/agent/plugins/logger-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/mail-plugin/pom.xml b/agent/plugins/mail-plugin/pom.xml index dea13a0528..d54065dc9e 100644 --- a/agent/plugins/mail-plugin/pom.xml +++ b/agent/plugins/mail-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/mongodb-plugin/pom.xml b/agent/plugins/mongodb-plugin/pom.xml index 2b79b2d9bf..3a25d15e34 100644 --- a/agent/plugins/mongodb-plugin/pom.xml +++ b/agent/plugins/mongodb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/netty-plugin/pom.xml b/agent/plugins/netty-plugin/pom.xml index 7fb831d09a..3a1c2abb2f 100644 --- a/agent/plugins/netty-plugin/pom.xml +++ b/agent/plugins/netty-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/play-plugin/pom.xml b/agent/plugins/play-plugin/pom.xml index ac22316ef9..425b897266 100644 --- a/agent/plugins/play-plugin/pom.xml +++ b/agent/plugins/play-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/quartz-plugin/pom.xml b/agent/plugins/quartz-plugin/pom.xml index e870d62bce..791103a679 100644 --- a/agent/plugins/quartz-plugin/pom.xml +++ b/agent/plugins/quartz-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/redis-plugin/pom.xml b/agent/plugins/redis-plugin/pom.xml index 3a4490fa2c..1ae8d924b2 100644 --- a/agent/plugins/redis-plugin/pom.xml +++ b/agent/plugins/redis-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/servlet-plugin/pom.xml b/agent/plugins/servlet-plugin/pom.xml index b16028a413..222db46a93 100644 --- a/agent/plugins/servlet-plugin/pom.xml +++ b/agent/plugins/servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/spring-plugin/pom.xml b/agent/plugins/spring-plugin/pom.xml index 907eb34fce..72f9db81a1 100644 --- a/agent/plugins/spring-plugin/pom.xml +++ b/agent/plugins/spring-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/plugins/struts-plugin/pom.xml b/agent/plugins/struts-plugin/pom.xml index a448cf8553..86af5a61c5 100644 --- a/agent/plugins/struts-plugin/pom.xml +++ b/agent/plugins/struts-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/central-https-linux/pom.xml b/agent/shaded/central-https-linux/pom.xml index 9785627a4c..f60b58e606 100644 --- a/agent/shaded/central-https-linux/pom.xml +++ b/agent/shaded/central-https-linux/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/central-https-osx/pom.xml b/agent/shaded/central-https-osx/pom.xml index ceaf557212..2b78d14403 100644 --- a/agent/shaded/central-https-osx/pom.xml +++ b/agent/shaded/central-https-osx/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/central-https-windows/pom.xml b/agent/shaded/central-https-windows/pom.xml index 8d7a4da403..7f9465a2d2 100644 --- a/agent/shaded/central-https-windows/pom.xml +++ b/agent/shaded/central-https-windows/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/core/pom.xml b/agent/shaded/core/pom.xml index 87f97cc576..b2ab6e03bb 100644 --- a/agent/shaded/core/pom.xml +++ b/agent/shaded/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/embedded/pom.xml b/agent/shaded/embedded/pom.xml index 9730770c16..26e666f334 100644 --- a/agent/shaded/embedded/pom.xml +++ b/agent/shaded/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/it-harness/pom.xml b/agent/shaded/it-harness/pom.xml index c31f88fe2d..09b06b6ab0 100644 --- a/agent/shaded/it-harness/pom.xml +++ b/agent/shaded/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/shaded/logging-logstash/pom.xml b/agent/shaded/logging-logstash/pom.xml index 5468bfcb48..06a25e0326 100644 --- a/agent/shaded/logging-logstash/pom.xml +++ b/agent/shaded/logging-logstash/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../../.. diff --git a/agent/ui-sandbox/pom.xml b/agent/ui-sandbox/pom.xml index 5e5e0a5cd0..48c48bf533 100644 --- a/agent/ui-sandbox/pom.xml +++ b/agent/ui-sandbox/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/build/license-bundle/pom.xml b/build/license-bundle/pom.xml index 4d4fa0a294..99eb2e07cd 100644 --- a/build/license-bundle/pom.xml +++ b/build/license-bundle/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/build/multi-lib-tests/pom.xml b/build/multi-lib-tests/pom.xml index d73d023b08..189a286b89 100644 --- a/build/multi-lib-tests/pom.xml +++ b/build/multi-lib-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 ../.. diff --git a/central/pom.xml b/central/pom.xml index 58e679187f..eeb37845d9 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-central diff --git a/common/pom.xml b/common/pom.xml index 418f72eca0..08a084185a 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-common diff --git a/common2/pom.xml b/common2/pom.xml index f3fd95802e..4b92b76e5d 100644 --- a/common2/pom.xml +++ b/common2/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-common2 diff --git a/pom.xml b/pom.xml index f5dcd8e623..fcc59f0c28 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 pom Glowroot Parent Project diff --git a/ui/pom.xml b/ui/pom.xml index 5211309627..ff02c68135 100644 --- a/ui/pom.xml +++ b/ui/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-ui diff --git a/webdriver-tests/pom.xml b/webdriver-tests/pom.xml index 1405c78c47..1b79a78d35 100644 --- a/webdriver-tests/pom.xml +++ b/webdriver-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 .. diff --git a/wire-api/pom.xml b/wire-api/pom.xml index 1f3d0820ea..af2fb8a340 100644 --- a/wire-api/pom.xml +++ b/wire-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3-SNAPSHOT + 0.14.3 glowroot-wire-api From f8b3af0221f6b7f6bc2eb0b03361bdffae6ea8e2 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Tue, 6 May 2025 22:17:09 +0200 Subject: [PATCH 12/18] Prepare version 0.14.4 --- agent/api/pom.xml | 2 +- agent/benchmarks/pom.xml | 2 +- agent/bytecode-api/pom.xml | 2 +- agent/core/pom.xml | 2 +- agent/dist-maven-plugin/pom.xml | 2 +- agent/dist/pom.xml | 2 +- agent/embedded/pom.xml | 2 +- agent/integration-tests/pom.xml | 2 +- agent/it-harness/pom.xml | 2 +- agent/plugin-api/pom.xml | 2 +- agent/plugins/camel-plugin/pom.xml | 2 +- agent/plugins/cassandra-plugin/pom.xml | 2 +- agent/plugins/ejb-plugin/pom.xml | 2 +- agent/plugins/elasticsearch-plugin/pom.xml | 2 +- agent/plugins/executor-plugin/pom.xml | 2 +- agent/plugins/grails-plugin/pom.xml | 2 +- agent/plugins/hibernate-plugin/pom.xml | 2 +- agent/plugins/http-client-plugin/pom.xml | 2 +- agent/plugins/jakarta-servlet-plugin/pom.xml | 2 +- agent/plugins/java-http-server-plugin/pom.xml | 2 +- agent/plugins/jaxrs-plugin/pom.xml | 2 +- agent/plugins/jaxws-plugin/pom.xml | 2 +- agent/plugins/jdbc-plugin/pom.xml | 2 +- agent/plugins/jms-plugin/pom.xml | 2 +- agent/plugins/jsf-plugin/pom.xml | 2 +- agent/plugins/jsp-plugin/pom.xml | 2 +- agent/plugins/kafka-plugin/pom.xml | 2 +- agent/plugins/logger-plugin/pom.xml | 2 +- agent/plugins/mail-plugin/pom.xml | 2 +- agent/plugins/mongodb-plugin/pom.xml | 2 +- agent/plugins/netty-plugin/pom.xml | 2 +- agent/plugins/play-plugin/pom.xml | 2 +- agent/plugins/quartz-plugin/pom.xml | 2 +- agent/plugins/redis-plugin/pom.xml | 2 +- agent/plugins/servlet-plugin/pom.xml | 2 +- agent/plugins/spring-plugin/pom.xml | 2 +- agent/plugins/struts-plugin/pom.xml | 2 +- agent/shaded/central-https-linux/pom.xml | 2 +- agent/shaded/central-https-osx/pom.xml | 2 +- agent/shaded/central-https-windows/pom.xml | 2 +- agent/shaded/core/pom.xml | 2 +- agent/shaded/embedded/pom.xml | 2 +- agent/shaded/it-harness/pom.xml | 2 +- agent/shaded/logging-logstash/pom.xml | 2 +- agent/ui-sandbox/pom.xml | 2 +- build/license-bundle/pom.xml | 2 +- build/multi-lib-tests/pom.xml | 2 +- central/pom.xml | 2 +- common/pom.xml | 2 +- common2/pom.xml | 2 +- pom.xml | 2 +- ui/pom.xml | 2 +- webdriver-tests/pom.xml | 2 +- wire-api/pom.xml | 2 +- 54 files changed, 54 insertions(+), 54 deletions(-) diff --git a/agent/api/pom.xml b/agent/api/pom.xml index d5b99bdf89..baf3ba462b 100644 --- a/agent/api/pom.xml +++ b/agent/api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/benchmarks/pom.xml b/agent/benchmarks/pom.xml index 8320069981..1f44b556b3 100644 --- a/agent/benchmarks/pom.xml +++ b/agent/benchmarks/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/bytecode-api/pom.xml b/agent/bytecode-api/pom.xml index 679efcd1d4..e7ab29967e 100644 --- a/agent/bytecode-api/pom.xml +++ b/agent/bytecode-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/core/pom.xml b/agent/core/pom.xml index ceafdc8f13..e64b2e261a 100644 --- a/agent/core/pom.xml +++ b/agent/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/dist-maven-plugin/pom.xml b/agent/dist-maven-plugin/pom.xml index 86ed863ae4..2549ff95cb 100644 --- a/agent/dist-maven-plugin/pom.xml +++ b/agent/dist-maven-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/dist/pom.xml b/agent/dist/pom.xml index 334668cc89..e2c5cec9ee 100644 --- a/agent/dist/pom.xml +++ b/agent/dist/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/embedded/pom.xml b/agent/embedded/pom.xml index 1b9526ca87..d4607f9b00 100644 --- a/agent/embedded/pom.xml +++ b/agent/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/integration-tests/pom.xml b/agent/integration-tests/pom.xml index b93a8f3dbd..a4a3d652c2 100644 --- a/agent/integration-tests/pom.xml +++ b/agent/integration-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/it-harness/pom.xml b/agent/it-harness/pom.xml index a128e358c5..c6816c7210 100644 --- a/agent/it-harness/pom.xml +++ b/agent/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/plugin-api/pom.xml b/agent/plugin-api/pom.xml index 135eb539d7..aaf8d84991 100644 --- a/agent/plugin-api/pom.xml +++ b/agent/plugin-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/agent/plugins/camel-plugin/pom.xml b/agent/plugins/camel-plugin/pom.xml index 454e479fe4..150f96df20 100644 --- a/agent/plugins/camel-plugin/pom.xml +++ b/agent/plugins/camel-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/cassandra-plugin/pom.xml b/agent/plugins/cassandra-plugin/pom.xml index 120b44e0a4..5c18faadee 100644 --- a/agent/plugins/cassandra-plugin/pom.xml +++ b/agent/plugins/cassandra-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/ejb-plugin/pom.xml b/agent/plugins/ejb-plugin/pom.xml index cac408bdf7..0137a3d95e 100644 --- a/agent/plugins/ejb-plugin/pom.xml +++ b/agent/plugins/ejb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/elasticsearch-plugin/pom.xml b/agent/plugins/elasticsearch-plugin/pom.xml index 80961355bf..7e8545ab0a 100644 --- a/agent/plugins/elasticsearch-plugin/pom.xml +++ b/agent/plugins/elasticsearch-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/executor-plugin/pom.xml b/agent/plugins/executor-plugin/pom.xml index c3e3a198ff..eda330e382 100644 --- a/agent/plugins/executor-plugin/pom.xml +++ b/agent/plugins/executor-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/grails-plugin/pom.xml b/agent/plugins/grails-plugin/pom.xml index ce7b250042..b6bc7e60f4 100644 --- a/agent/plugins/grails-plugin/pom.xml +++ b/agent/plugins/grails-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/hibernate-plugin/pom.xml b/agent/plugins/hibernate-plugin/pom.xml index 42f66aa9ed..0795f971fb 100644 --- a/agent/plugins/hibernate-plugin/pom.xml +++ b/agent/plugins/hibernate-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/http-client-plugin/pom.xml b/agent/plugins/http-client-plugin/pom.xml index b64fa1e0a9..651039e26c 100644 --- a/agent/plugins/http-client-plugin/pom.xml +++ b/agent/plugins/http-client-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/jakarta-servlet-plugin/pom.xml b/agent/plugins/jakarta-servlet-plugin/pom.xml index 750ba8b2bc..e3acc7a2d7 100644 --- a/agent/plugins/jakarta-servlet-plugin/pom.xml +++ b/agent/plugins/jakarta-servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/java-http-server-plugin/pom.xml b/agent/plugins/java-http-server-plugin/pom.xml index 2798197033..164c5ea9aa 100644 --- a/agent/plugins/java-http-server-plugin/pom.xml +++ b/agent/plugins/java-http-server-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/jaxrs-plugin/pom.xml b/agent/plugins/jaxrs-plugin/pom.xml index ffcc44119b..1b6c33cef2 100644 --- a/agent/plugins/jaxrs-plugin/pom.xml +++ b/agent/plugins/jaxrs-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/jaxws-plugin/pom.xml b/agent/plugins/jaxws-plugin/pom.xml index 94f5c021ef..9ef94ae1a6 100644 --- a/agent/plugins/jaxws-plugin/pom.xml +++ b/agent/plugins/jaxws-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/jdbc-plugin/pom.xml b/agent/plugins/jdbc-plugin/pom.xml index fb754154e7..c1fd49c3c5 100644 --- a/agent/plugins/jdbc-plugin/pom.xml +++ b/agent/plugins/jdbc-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/jms-plugin/pom.xml b/agent/plugins/jms-plugin/pom.xml index 6652d9b73a..409020806f 100644 --- a/agent/plugins/jms-plugin/pom.xml +++ b/agent/plugins/jms-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/jsf-plugin/pom.xml b/agent/plugins/jsf-plugin/pom.xml index 9759976337..3e909c1674 100644 --- a/agent/plugins/jsf-plugin/pom.xml +++ b/agent/plugins/jsf-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/jsp-plugin/pom.xml b/agent/plugins/jsp-plugin/pom.xml index dbf1e96a1b..87e6e09913 100644 --- a/agent/plugins/jsp-plugin/pom.xml +++ b/agent/plugins/jsp-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/kafka-plugin/pom.xml b/agent/plugins/kafka-plugin/pom.xml index dfd6a30275..f76aa8983f 100644 --- a/agent/plugins/kafka-plugin/pom.xml +++ b/agent/plugins/kafka-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/logger-plugin/pom.xml b/agent/plugins/logger-plugin/pom.xml index 2929467d71..293ae4e703 100644 --- a/agent/plugins/logger-plugin/pom.xml +++ b/agent/plugins/logger-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/mail-plugin/pom.xml b/agent/plugins/mail-plugin/pom.xml index d54065dc9e..b6694dbed0 100644 --- a/agent/plugins/mail-plugin/pom.xml +++ b/agent/plugins/mail-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/mongodb-plugin/pom.xml b/agent/plugins/mongodb-plugin/pom.xml index 3a25d15e34..50947a59fa 100644 --- a/agent/plugins/mongodb-plugin/pom.xml +++ b/agent/plugins/mongodb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/netty-plugin/pom.xml b/agent/plugins/netty-plugin/pom.xml index 3a1c2abb2f..5024ba183a 100644 --- a/agent/plugins/netty-plugin/pom.xml +++ b/agent/plugins/netty-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/play-plugin/pom.xml b/agent/plugins/play-plugin/pom.xml index 425b897266..1540778bb9 100644 --- a/agent/plugins/play-plugin/pom.xml +++ b/agent/plugins/play-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/quartz-plugin/pom.xml b/agent/plugins/quartz-plugin/pom.xml index 791103a679..ad6c6dae53 100644 --- a/agent/plugins/quartz-plugin/pom.xml +++ b/agent/plugins/quartz-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/redis-plugin/pom.xml b/agent/plugins/redis-plugin/pom.xml index 1ae8d924b2..4a6275ab3d 100644 --- a/agent/plugins/redis-plugin/pom.xml +++ b/agent/plugins/redis-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/servlet-plugin/pom.xml b/agent/plugins/servlet-plugin/pom.xml index 222db46a93..73b3dd1f0e 100644 --- a/agent/plugins/servlet-plugin/pom.xml +++ b/agent/plugins/servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/spring-plugin/pom.xml b/agent/plugins/spring-plugin/pom.xml index 72f9db81a1..96f873bb4b 100644 --- a/agent/plugins/spring-plugin/pom.xml +++ b/agent/plugins/spring-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/plugins/struts-plugin/pom.xml b/agent/plugins/struts-plugin/pom.xml index 86af5a61c5..5de76577a4 100644 --- a/agent/plugins/struts-plugin/pom.xml +++ b/agent/plugins/struts-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-linux/pom.xml b/agent/shaded/central-https-linux/pom.xml index f60b58e606..d677e5c1df 100644 --- a/agent/shaded/central-https-linux/pom.xml +++ b/agent/shaded/central-https-linux/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-osx/pom.xml b/agent/shaded/central-https-osx/pom.xml index 2b78d14403..021e7858e5 100644 --- a/agent/shaded/central-https-osx/pom.xml +++ b/agent/shaded/central-https-osx/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-windows/pom.xml b/agent/shaded/central-https-windows/pom.xml index 7f9465a2d2..8afdbce3fe 100644 --- a/agent/shaded/central-https-windows/pom.xml +++ b/agent/shaded/central-https-windows/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/shaded/core/pom.xml b/agent/shaded/core/pom.xml index b2ab6e03bb..511dcf650f 100644 --- a/agent/shaded/core/pom.xml +++ b/agent/shaded/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/shaded/embedded/pom.xml b/agent/shaded/embedded/pom.xml index 26e666f334..f61673938c 100644 --- a/agent/shaded/embedded/pom.xml +++ b/agent/shaded/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/shaded/it-harness/pom.xml b/agent/shaded/it-harness/pom.xml index 09b06b6ab0..6d3eab0bef 100644 --- a/agent/shaded/it-harness/pom.xml +++ b/agent/shaded/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/shaded/logging-logstash/pom.xml b/agent/shaded/logging-logstash/pom.xml index 06a25e0326..19f2eb2091 100644 --- a/agent/shaded/logging-logstash/pom.xml +++ b/agent/shaded/logging-logstash/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../../.. diff --git a/agent/ui-sandbox/pom.xml b/agent/ui-sandbox/pom.xml index 48c48bf533..bad7ebc741 100644 --- a/agent/ui-sandbox/pom.xml +++ b/agent/ui-sandbox/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/build/license-bundle/pom.xml b/build/license-bundle/pom.xml index 99eb2e07cd..a3753c375d 100644 --- a/build/license-bundle/pom.xml +++ b/build/license-bundle/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/build/multi-lib-tests/pom.xml b/build/multi-lib-tests/pom.xml index 189a286b89..b21265cb62 100644 --- a/build/multi-lib-tests/pom.xml +++ b/build/multi-lib-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT ../.. diff --git a/central/pom.xml b/central/pom.xml index eeb37845d9..db4d62584e 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT glowroot-central diff --git a/common/pom.xml b/common/pom.xml index 08a084185a..6ece9f6fed 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT glowroot-common diff --git a/common2/pom.xml b/common2/pom.xml index 4b92b76e5d..7f4acbe885 100644 --- a/common2/pom.xml +++ b/common2/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT glowroot-common2 diff --git a/pom.xml b/pom.xml index fcc59f0c28..938ee2a746 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT pom Glowroot Parent Project diff --git a/ui/pom.xml b/ui/pom.xml index ff02c68135..5fd7da557e 100644 --- a/ui/pom.xml +++ b/ui/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT glowroot-ui diff --git a/webdriver-tests/pom.xml b/webdriver-tests/pom.xml index 1b79a78d35..2dac7f765e 100644 --- a/webdriver-tests/pom.xml +++ b/webdriver-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT .. diff --git a/wire-api/pom.xml b/wire-api/pom.xml index af2fb8a340..84dd4d03c8 100644 --- a/wire-api/pom.xml +++ b/wire-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.3 + 0.14.4-SNAPSHOT glowroot-wire-api From 383915c0df00e225dd432b6f61af756672522cae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 May 2025 00:14:39 +0000 Subject: [PATCH 13/18] Release version 0.14.4 --- README.md | 2 +- agent/api/pom.xml | 2 +- agent/benchmarks/pom.xml | 2 +- agent/bytecode-api/pom.xml | 2 +- agent/core/pom.xml | 2 +- agent/dist-maven-plugin/pom.xml | 2 +- agent/dist/pom.xml | 2 +- agent/embedded/pom.xml | 2 +- agent/integration-tests/pom.xml | 2 +- agent/it-harness/pom.xml | 2 +- agent/plugin-api/pom.xml | 2 +- agent/plugins/camel-plugin/pom.xml | 2 +- agent/plugins/cassandra-plugin/pom.xml | 2 +- agent/plugins/ejb-plugin/pom.xml | 2 +- agent/plugins/elasticsearch-plugin/pom.xml | 2 +- agent/plugins/executor-plugin/pom.xml | 2 +- agent/plugins/grails-plugin/pom.xml | 2 +- agent/plugins/hibernate-plugin/pom.xml | 2 +- agent/plugins/http-client-plugin/pom.xml | 2 +- agent/plugins/jakarta-servlet-plugin/pom.xml | 2 +- agent/plugins/java-http-server-plugin/pom.xml | 2 +- agent/plugins/jaxrs-plugin/pom.xml | 2 +- agent/plugins/jaxws-plugin/pom.xml | 2 +- agent/plugins/jdbc-plugin/pom.xml | 2 +- agent/plugins/jms-plugin/pom.xml | 2 +- agent/plugins/jsf-plugin/pom.xml | 2 +- agent/plugins/jsp-plugin/pom.xml | 2 +- agent/plugins/kafka-plugin/pom.xml | 2 +- agent/plugins/logger-plugin/pom.xml | 2 +- agent/plugins/mail-plugin/pom.xml | 2 +- agent/plugins/mongodb-plugin/pom.xml | 2 +- agent/plugins/netty-plugin/pom.xml | 2 +- agent/plugins/play-plugin/pom.xml | 2 +- agent/plugins/quartz-plugin/pom.xml | 2 +- agent/plugins/redis-plugin/pom.xml | 2 +- agent/plugins/servlet-plugin/pom.xml | 2 +- agent/plugins/spring-plugin/pom.xml | 2 +- agent/plugins/struts-plugin/pom.xml | 2 +- agent/shaded/central-https-linux/pom.xml | 2 +- agent/shaded/central-https-osx/pom.xml | 2 +- agent/shaded/central-https-windows/pom.xml | 2 +- agent/shaded/core/pom.xml | 2 +- agent/shaded/embedded/pom.xml | 2 +- agent/shaded/it-harness/pom.xml | 2 +- agent/shaded/logging-logstash/pom.xml | 2 +- agent/ui-sandbox/pom.xml | 2 +- build/license-bundle/pom.xml | 2 +- build/multi-lib-tests/pom.xml | 2 +- central/pom.xml | 2 +- common/pom.xml | 2 +- common2/pom.xml | 2 +- pom.xml | 2 +- ui/pom.xml | 2 +- webdriver-tests/pom.xml | 2 +- wire-api/pom.xml | 2 +- 55 files changed, 55 insertions(+), 55 deletions(-) diff --git a/README.md b/README.md index 7c8956d246..42263bd1a7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Glowroot ## Quick start -1. Download and unzip [glowroot-0.14.3-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.3/glowroot-0.14.3-dist.zip) +1. Download and unzip [glowroot-0.14.4-dist.zip](https://github.com/glowroot/glowroot/releases/download/v0.14.4/glowroot-0.14.4-dist.zip) 2. Add `-javaagent:path/to/glowroot.jar` to your application's JVM args [[where are my application server's JVM args?](https://github.com/glowroot/glowroot/wiki/Where-are-my-application-server's-JVM-args%3F)] 3. Check that the user account that runs the JVM has write access to the glowroot folder 4. Start your application diff --git a/agent/api/pom.xml b/agent/api/pom.xml index baf3ba462b..41bcc23f16 100644 --- a/agent/api/pom.xml +++ b/agent/api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/benchmarks/pom.xml b/agent/benchmarks/pom.xml index 1f44b556b3..992062194b 100644 --- a/agent/benchmarks/pom.xml +++ b/agent/benchmarks/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/bytecode-api/pom.xml b/agent/bytecode-api/pom.xml index e7ab29967e..1d7ab6631c 100644 --- a/agent/bytecode-api/pom.xml +++ b/agent/bytecode-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/core/pom.xml b/agent/core/pom.xml index e64b2e261a..411d65a1a4 100644 --- a/agent/core/pom.xml +++ b/agent/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/dist-maven-plugin/pom.xml b/agent/dist-maven-plugin/pom.xml index 2549ff95cb..dfc9aa6117 100644 --- a/agent/dist-maven-plugin/pom.xml +++ b/agent/dist-maven-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/dist/pom.xml b/agent/dist/pom.xml index e2c5cec9ee..114911860c 100644 --- a/agent/dist/pom.xml +++ b/agent/dist/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/embedded/pom.xml b/agent/embedded/pom.xml index d4607f9b00..928602be43 100644 --- a/agent/embedded/pom.xml +++ b/agent/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/integration-tests/pom.xml b/agent/integration-tests/pom.xml index a4a3d652c2..3ca14df819 100644 --- a/agent/integration-tests/pom.xml +++ b/agent/integration-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/it-harness/pom.xml b/agent/it-harness/pom.xml index c6816c7210..535df3ad4a 100644 --- a/agent/it-harness/pom.xml +++ b/agent/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/plugin-api/pom.xml b/agent/plugin-api/pom.xml index aaf8d84991..a9021f510f 100644 --- a/agent/plugin-api/pom.xml +++ b/agent/plugin-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/agent/plugins/camel-plugin/pom.xml b/agent/plugins/camel-plugin/pom.xml index 150f96df20..f50861d008 100644 --- a/agent/plugins/camel-plugin/pom.xml +++ b/agent/plugins/camel-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/cassandra-plugin/pom.xml b/agent/plugins/cassandra-plugin/pom.xml index 5c18faadee..86098e0650 100644 --- a/agent/plugins/cassandra-plugin/pom.xml +++ b/agent/plugins/cassandra-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/ejb-plugin/pom.xml b/agent/plugins/ejb-plugin/pom.xml index 0137a3d95e..ed93b68b0f 100644 --- a/agent/plugins/ejb-plugin/pom.xml +++ b/agent/plugins/ejb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/elasticsearch-plugin/pom.xml b/agent/plugins/elasticsearch-plugin/pom.xml index 7e8545ab0a..0b26e3a992 100644 --- a/agent/plugins/elasticsearch-plugin/pom.xml +++ b/agent/plugins/elasticsearch-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/executor-plugin/pom.xml b/agent/plugins/executor-plugin/pom.xml index eda330e382..2aa84d7af5 100644 --- a/agent/plugins/executor-plugin/pom.xml +++ b/agent/plugins/executor-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/grails-plugin/pom.xml b/agent/plugins/grails-plugin/pom.xml index b6bc7e60f4..584a83108f 100644 --- a/agent/plugins/grails-plugin/pom.xml +++ b/agent/plugins/grails-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/hibernate-plugin/pom.xml b/agent/plugins/hibernate-plugin/pom.xml index 0795f971fb..eb1786e3a4 100644 --- a/agent/plugins/hibernate-plugin/pom.xml +++ b/agent/plugins/hibernate-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/http-client-plugin/pom.xml b/agent/plugins/http-client-plugin/pom.xml index 651039e26c..27507300ee 100644 --- a/agent/plugins/http-client-plugin/pom.xml +++ b/agent/plugins/http-client-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/jakarta-servlet-plugin/pom.xml b/agent/plugins/jakarta-servlet-plugin/pom.xml index e3acc7a2d7..49c98e75df 100644 --- a/agent/plugins/jakarta-servlet-plugin/pom.xml +++ b/agent/plugins/jakarta-servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/java-http-server-plugin/pom.xml b/agent/plugins/java-http-server-plugin/pom.xml index 164c5ea9aa..53bdfeffaa 100644 --- a/agent/plugins/java-http-server-plugin/pom.xml +++ b/agent/plugins/java-http-server-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/jaxrs-plugin/pom.xml b/agent/plugins/jaxrs-plugin/pom.xml index 1b6c33cef2..469a807ec3 100644 --- a/agent/plugins/jaxrs-plugin/pom.xml +++ b/agent/plugins/jaxrs-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/jaxws-plugin/pom.xml b/agent/plugins/jaxws-plugin/pom.xml index 9ef94ae1a6..7e51fdac9c 100644 --- a/agent/plugins/jaxws-plugin/pom.xml +++ b/agent/plugins/jaxws-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/jdbc-plugin/pom.xml b/agent/plugins/jdbc-plugin/pom.xml index c1fd49c3c5..a5465110fa 100644 --- a/agent/plugins/jdbc-plugin/pom.xml +++ b/agent/plugins/jdbc-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/jms-plugin/pom.xml b/agent/plugins/jms-plugin/pom.xml index 409020806f..14d591b22e 100644 --- a/agent/plugins/jms-plugin/pom.xml +++ b/agent/plugins/jms-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/jsf-plugin/pom.xml b/agent/plugins/jsf-plugin/pom.xml index 3e909c1674..4751a763dd 100644 --- a/agent/plugins/jsf-plugin/pom.xml +++ b/agent/plugins/jsf-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/jsp-plugin/pom.xml b/agent/plugins/jsp-plugin/pom.xml index 87e6e09913..40a64f4d52 100644 --- a/agent/plugins/jsp-plugin/pom.xml +++ b/agent/plugins/jsp-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/kafka-plugin/pom.xml b/agent/plugins/kafka-plugin/pom.xml index f76aa8983f..cab4c9a77e 100644 --- a/agent/plugins/kafka-plugin/pom.xml +++ b/agent/plugins/kafka-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/logger-plugin/pom.xml b/agent/plugins/logger-plugin/pom.xml index 293ae4e703..ab29aa646a 100644 --- a/agent/plugins/logger-plugin/pom.xml +++ b/agent/plugins/logger-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/mail-plugin/pom.xml b/agent/plugins/mail-plugin/pom.xml index b6694dbed0..c81faa9d18 100644 --- a/agent/plugins/mail-plugin/pom.xml +++ b/agent/plugins/mail-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/mongodb-plugin/pom.xml b/agent/plugins/mongodb-plugin/pom.xml index 50947a59fa..6a2467c778 100644 --- a/agent/plugins/mongodb-plugin/pom.xml +++ b/agent/plugins/mongodb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/netty-plugin/pom.xml b/agent/plugins/netty-plugin/pom.xml index 5024ba183a..2f6b800011 100644 --- a/agent/plugins/netty-plugin/pom.xml +++ b/agent/plugins/netty-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/play-plugin/pom.xml b/agent/plugins/play-plugin/pom.xml index 1540778bb9..1c7395a282 100644 --- a/agent/plugins/play-plugin/pom.xml +++ b/agent/plugins/play-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/quartz-plugin/pom.xml b/agent/plugins/quartz-plugin/pom.xml index ad6c6dae53..158dad3f6a 100644 --- a/agent/plugins/quartz-plugin/pom.xml +++ b/agent/plugins/quartz-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/redis-plugin/pom.xml b/agent/plugins/redis-plugin/pom.xml index 4a6275ab3d..9a77cbdc87 100644 --- a/agent/plugins/redis-plugin/pom.xml +++ b/agent/plugins/redis-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/servlet-plugin/pom.xml b/agent/plugins/servlet-plugin/pom.xml index 73b3dd1f0e..faf1597211 100644 --- a/agent/plugins/servlet-plugin/pom.xml +++ b/agent/plugins/servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/spring-plugin/pom.xml b/agent/plugins/spring-plugin/pom.xml index 96f873bb4b..a15006192e 100644 --- a/agent/plugins/spring-plugin/pom.xml +++ b/agent/plugins/spring-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/plugins/struts-plugin/pom.xml b/agent/plugins/struts-plugin/pom.xml index 5de76577a4..b61092d275 100644 --- a/agent/plugins/struts-plugin/pom.xml +++ b/agent/plugins/struts-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/shaded/central-https-linux/pom.xml b/agent/shaded/central-https-linux/pom.xml index d677e5c1df..57c8b41ba6 100644 --- a/agent/shaded/central-https-linux/pom.xml +++ b/agent/shaded/central-https-linux/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/shaded/central-https-osx/pom.xml b/agent/shaded/central-https-osx/pom.xml index 021e7858e5..c1fdfe5b2c 100644 --- a/agent/shaded/central-https-osx/pom.xml +++ b/agent/shaded/central-https-osx/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/shaded/central-https-windows/pom.xml b/agent/shaded/central-https-windows/pom.xml index 8afdbce3fe..c7fc03b05a 100644 --- a/agent/shaded/central-https-windows/pom.xml +++ b/agent/shaded/central-https-windows/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/shaded/core/pom.xml b/agent/shaded/core/pom.xml index 511dcf650f..fc1375e3a9 100644 --- a/agent/shaded/core/pom.xml +++ b/agent/shaded/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/shaded/embedded/pom.xml b/agent/shaded/embedded/pom.xml index f61673938c..3e8c21ef48 100644 --- a/agent/shaded/embedded/pom.xml +++ b/agent/shaded/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/shaded/it-harness/pom.xml b/agent/shaded/it-harness/pom.xml index 6d3eab0bef..1a25b83e26 100644 --- a/agent/shaded/it-harness/pom.xml +++ b/agent/shaded/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/shaded/logging-logstash/pom.xml b/agent/shaded/logging-logstash/pom.xml index 19f2eb2091..e697dc4e77 100644 --- a/agent/shaded/logging-logstash/pom.xml +++ b/agent/shaded/logging-logstash/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../../.. diff --git a/agent/ui-sandbox/pom.xml b/agent/ui-sandbox/pom.xml index bad7ebc741..9ff9363bd3 100644 --- a/agent/ui-sandbox/pom.xml +++ b/agent/ui-sandbox/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/build/license-bundle/pom.xml b/build/license-bundle/pom.xml index a3753c375d..dac0ab15eb 100644 --- a/build/license-bundle/pom.xml +++ b/build/license-bundle/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/build/multi-lib-tests/pom.xml b/build/multi-lib-tests/pom.xml index b21265cb62..b97723e618 100644 --- a/build/multi-lib-tests/pom.xml +++ b/build/multi-lib-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 ../.. diff --git a/central/pom.xml b/central/pom.xml index db4d62584e..675de38a8f 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 glowroot-central diff --git a/common/pom.xml b/common/pom.xml index 6ece9f6fed..e5acdc1c41 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 glowroot-common diff --git a/common2/pom.xml b/common2/pom.xml index 7f4acbe885..fcb0b4e921 100644 --- a/common2/pom.xml +++ b/common2/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 glowroot-common2 diff --git a/pom.xml b/pom.xml index 938ee2a746..7b80748a15 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 pom Glowroot Parent Project diff --git a/ui/pom.xml b/ui/pom.xml index 5fd7da557e..02b6d81370 100644 --- a/ui/pom.xml +++ b/ui/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 glowroot-ui diff --git a/webdriver-tests/pom.xml b/webdriver-tests/pom.xml index 2dac7f765e..73bb03c9a2 100644 --- a/webdriver-tests/pom.xml +++ b/webdriver-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 .. diff --git a/wire-api/pom.xml b/wire-api/pom.xml index 84dd4d03c8..7182465282 100644 --- a/wire-api/pom.xml +++ b/wire-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4-SNAPSHOT + 0.14.4 glowroot-wire-api From 2cebb2f2995e10806aef34f882005f11c2f74568 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Mon, 9 Jun 2025 21:31:26 +0200 Subject: [PATCH 14/18] Prepare version 0.14.5-beta.1 --- agent/api/pom.xml | 2 +- agent/benchmarks/pom.xml | 2 +- agent/bytecode-api/pom.xml | 2 +- agent/core/pom.xml | 2 +- agent/dist-maven-plugin/pom.xml | 2 +- agent/dist/pom.xml | 2 +- agent/embedded/pom.xml | 2 +- agent/integration-tests/pom.xml | 2 +- agent/it-harness/pom.xml | 2 +- agent/plugin-api/pom.xml | 2 +- agent/plugins/camel-plugin/pom.xml | 2 +- agent/plugins/cassandra-plugin/pom.xml | 2 +- agent/plugins/ejb-plugin/pom.xml | 2 +- agent/plugins/elasticsearch-plugin/pom.xml | 2 +- agent/plugins/executor-plugin/pom.xml | 2 +- agent/plugins/grails-plugin/pom.xml | 2 +- agent/plugins/hibernate-plugin/pom.xml | 2 +- agent/plugins/http-client-plugin/pom.xml | 2 +- agent/plugins/jakarta-servlet-plugin/pom.xml | 2 +- agent/plugins/java-http-server-plugin/pom.xml | 2 +- agent/plugins/jaxrs-plugin/pom.xml | 2 +- agent/plugins/jaxws-plugin/pom.xml | 2 +- agent/plugins/jdbc-plugin/pom.xml | 2 +- agent/plugins/jms-plugin/pom.xml | 2 +- agent/plugins/jsf-plugin/pom.xml | 2 +- agent/plugins/jsp-plugin/pom.xml | 2 +- agent/plugins/kafka-plugin/pom.xml | 2 +- agent/plugins/logger-plugin/pom.xml | 2 +- agent/plugins/mail-plugin/pom.xml | 2 +- agent/plugins/mongodb-plugin/pom.xml | 2 +- agent/plugins/netty-plugin/pom.xml | 2 +- agent/plugins/play-plugin/pom.xml | 2 +- agent/plugins/quartz-plugin/pom.xml | 2 +- agent/plugins/redis-plugin/pom.xml | 2 +- agent/plugins/servlet-plugin/pom.xml | 2 +- agent/plugins/spring-plugin/pom.xml | 2 +- agent/plugins/struts-plugin/pom.xml | 2 +- agent/shaded/central-https-linux/pom.xml | 2 +- agent/shaded/central-https-osx/pom.xml | 2 +- agent/shaded/central-https-windows/pom.xml | 2 +- agent/shaded/core/pom.xml | 2 +- agent/shaded/embedded/pom.xml | 2 +- agent/shaded/it-harness/pom.xml | 2 +- agent/shaded/logging-logstash/pom.xml | 2 +- agent/ui-sandbox/pom.xml | 2 +- build/license-bundle/pom.xml | 2 +- build/multi-lib-tests/pom.xml | 2 +- central/pom.xml | 2 +- common/pom.xml | 2 +- common2/pom.xml | 2 +- pom.xml | 2 +- ui/pom.xml | 2 +- webdriver-tests/pom.xml | 2 +- wire-api/pom.xml | 2 +- 54 files changed, 54 insertions(+), 54 deletions(-) diff --git a/agent/api/pom.xml b/agent/api/pom.xml index 41bcc23f16..1912f2523c 100644 --- a/agent/api/pom.xml +++ b/agent/api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/benchmarks/pom.xml b/agent/benchmarks/pom.xml index 992062194b..5079797500 100644 --- a/agent/benchmarks/pom.xml +++ b/agent/benchmarks/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/bytecode-api/pom.xml b/agent/bytecode-api/pom.xml index 1d7ab6631c..ab66664741 100644 --- a/agent/bytecode-api/pom.xml +++ b/agent/bytecode-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/core/pom.xml b/agent/core/pom.xml index 411d65a1a4..f9f4caf54b 100644 --- a/agent/core/pom.xml +++ b/agent/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/dist-maven-plugin/pom.xml b/agent/dist-maven-plugin/pom.xml index dfc9aa6117..7cd7a9706c 100644 --- a/agent/dist-maven-plugin/pom.xml +++ b/agent/dist-maven-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/dist/pom.xml b/agent/dist/pom.xml index 114911860c..23ee56149e 100644 --- a/agent/dist/pom.xml +++ b/agent/dist/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/embedded/pom.xml b/agent/embedded/pom.xml index 928602be43..3ee8d69f3c 100644 --- a/agent/embedded/pom.xml +++ b/agent/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/integration-tests/pom.xml b/agent/integration-tests/pom.xml index 3ca14df819..a78f940f1c 100644 --- a/agent/integration-tests/pom.xml +++ b/agent/integration-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/it-harness/pom.xml b/agent/it-harness/pom.xml index 535df3ad4a..0905e6bf8f 100644 --- a/agent/it-harness/pom.xml +++ b/agent/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/plugin-api/pom.xml b/agent/plugin-api/pom.xml index a9021f510f..f9a402ac3d 100644 --- a/agent/plugin-api/pom.xml +++ b/agent/plugin-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/agent/plugins/camel-plugin/pom.xml b/agent/plugins/camel-plugin/pom.xml index f50861d008..7143eb88cb 100644 --- a/agent/plugins/camel-plugin/pom.xml +++ b/agent/plugins/camel-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/cassandra-plugin/pom.xml b/agent/plugins/cassandra-plugin/pom.xml index 86098e0650..a71c5c2ac0 100644 --- a/agent/plugins/cassandra-plugin/pom.xml +++ b/agent/plugins/cassandra-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/ejb-plugin/pom.xml b/agent/plugins/ejb-plugin/pom.xml index ed93b68b0f..807db65235 100644 --- a/agent/plugins/ejb-plugin/pom.xml +++ b/agent/plugins/ejb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/elasticsearch-plugin/pom.xml b/agent/plugins/elasticsearch-plugin/pom.xml index 0b26e3a992..d21dfba51c 100644 --- a/agent/plugins/elasticsearch-plugin/pom.xml +++ b/agent/plugins/elasticsearch-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/executor-plugin/pom.xml b/agent/plugins/executor-plugin/pom.xml index 2aa84d7af5..b3fd0eaaf2 100644 --- a/agent/plugins/executor-plugin/pom.xml +++ b/agent/plugins/executor-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/grails-plugin/pom.xml b/agent/plugins/grails-plugin/pom.xml index 584a83108f..46f00b1742 100644 --- a/agent/plugins/grails-plugin/pom.xml +++ b/agent/plugins/grails-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/hibernate-plugin/pom.xml b/agent/plugins/hibernate-plugin/pom.xml index eb1786e3a4..4582d25893 100644 --- a/agent/plugins/hibernate-plugin/pom.xml +++ b/agent/plugins/hibernate-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/http-client-plugin/pom.xml b/agent/plugins/http-client-plugin/pom.xml index 27507300ee..9b1ae93830 100644 --- a/agent/plugins/http-client-plugin/pom.xml +++ b/agent/plugins/http-client-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/jakarta-servlet-plugin/pom.xml b/agent/plugins/jakarta-servlet-plugin/pom.xml index 49c98e75df..cb314ecced 100644 --- a/agent/plugins/jakarta-servlet-plugin/pom.xml +++ b/agent/plugins/jakarta-servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/java-http-server-plugin/pom.xml b/agent/plugins/java-http-server-plugin/pom.xml index 53bdfeffaa..1d56a006f5 100644 --- a/agent/plugins/java-http-server-plugin/pom.xml +++ b/agent/plugins/java-http-server-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/jaxrs-plugin/pom.xml b/agent/plugins/jaxrs-plugin/pom.xml index 469a807ec3..fd19022bf9 100644 --- a/agent/plugins/jaxrs-plugin/pom.xml +++ b/agent/plugins/jaxrs-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/jaxws-plugin/pom.xml b/agent/plugins/jaxws-plugin/pom.xml index 7e51fdac9c..191774a109 100644 --- a/agent/plugins/jaxws-plugin/pom.xml +++ b/agent/plugins/jaxws-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/jdbc-plugin/pom.xml b/agent/plugins/jdbc-plugin/pom.xml index a5465110fa..58f454458a 100644 --- a/agent/plugins/jdbc-plugin/pom.xml +++ b/agent/plugins/jdbc-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/jms-plugin/pom.xml b/agent/plugins/jms-plugin/pom.xml index 14d591b22e..c5183ca6bf 100644 --- a/agent/plugins/jms-plugin/pom.xml +++ b/agent/plugins/jms-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/jsf-plugin/pom.xml b/agent/plugins/jsf-plugin/pom.xml index 4751a763dd..636ae16422 100644 --- a/agent/plugins/jsf-plugin/pom.xml +++ b/agent/plugins/jsf-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/jsp-plugin/pom.xml b/agent/plugins/jsp-plugin/pom.xml index 40a64f4d52..cb9606c843 100644 --- a/agent/plugins/jsp-plugin/pom.xml +++ b/agent/plugins/jsp-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/kafka-plugin/pom.xml b/agent/plugins/kafka-plugin/pom.xml index cab4c9a77e..503cbb83ef 100644 --- a/agent/plugins/kafka-plugin/pom.xml +++ b/agent/plugins/kafka-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/logger-plugin/pom.xml b/agent/plugins/logger-plugin/pom.xml index ab29aa646a..4347cb3018 100644 --- a/agent/plugins/logger-plugin/pom.xml +++ b/agent/plugins/logger-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/mail-plugin/pom.xml b/agent/plugins/mail-plugin/pom.xml index c81faa9d18..2a0ed76b41 100644 --- a/agent/plugins/mail-plugin/pom.xml +++ b/agent/plugins/mail-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/mongodb-plugin/pom.xml b/agent/plugins/mongodb-plugin/pom.xml index 6a2467c778..f260687fc5 100644 --- a/agent/plugins/mongodb-plugin/pom.xml +++ b/agent/plugins/mongodb-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/netty-plugin/pom.xml b/agent/plugins/netty-plugin/pom.xml index 2f6b800011..77c524c4a4 100644 --- a/agent/plugins/netty-plugin/pom.xml +++ b/agent/plugins/netty-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/play-plugin/pom.xml b/agent/plugins/play-plugin/pom.xml index 1c7395a282..f46157d91c 100644 --- a/agent/plugins/play-plugin/pom.xml +++ b/agent/plugins/play-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/quartz-plugin/pom.xml b/agent/plugins/quartz-plugin/pom.xml index 158dad3f6a..22c7bbb09a 100644 --- a/agent/plugins/quartz-plugin/pom.xml +++ b/agent/plugins/quartz-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/redis-plugin/pom.xml b/agent/plugins/redis-plugin/pom.xml index 9a77cbdc87..fcabb5ce69 100644 --- a/agent/plugins/redis-plugin/pom.xml +++ b/agent/plugins/redis-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/servlet-plugin/pom.xml b/agent/plugins/servlet-plugin/pom.xml index faf1597211..d466e2e69b 100644 --- a/agent/plugins/servlet-plugin/pom.xml +++ b/agent/plugins/servlet-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/spring-plugin/pom.xml b/agent/plugins/spring-plugin/pom.xml index a15006192e..9ca25405b5 100644 --- a/agent/plugins/spring-plugin/pom.xml +++ b/agent/plugins/spring-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/plugins/struts-plugin/pom.xml b/agent/plugins/struts-plugin/pom.xml index b61092d275..ca673eb9ac 100644 --- a/agent/plugins/struts-plugin/pom.xml +++ b/agent/plugins/struts-plugin/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-linux/pom.xml b/agent/shaded/central-https-linux/pom.xml index 57c8b41ba6..92e1c681af 100644 --- a/agent/shaded/central-https-linux/pom.xml +++ b/agent/shaded/central-https-linux/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-osx/pom.xml b/agent/shaded/central-https-osx/pom.xml index c1fdfe5b2c..989b1da168 100644 --- a/agent/shaded/central-https-osx/pom.xml +++ b/agent/shaded/central-https-osx/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/shaded/central-https-windows/pom.xml b/agent/shaded/central-https-windows/pom.xml index c7fc03b05a..bd86b0b97d 100644 --- a/agent/shaded/central-https-windows/pom.xml +++ b/agent/shaded/central-https-windows/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/shaded/core/pom.xml b/agent/shaded/core/pom.xml index fc1375e3a9..59eaf4db3e 100644 --- a/agent/shaded/core/pom.xml +++ b/agent/shaded/core/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/shaded/embedded/pom.xml b/agent/shaded/embedded/pom.xml index 3e8c21ef48..94148f50b8 100644 --- a/agent/shaded/embedded/pom.xml +++ b/agent/shaded/embedded/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/shaded/it-harness/pom.xml b/agent/shaded/it-harness/pom.xml index 1a25b83e26..7e799df23d 100644 --- a/agent/shaded/it-harness/pom.xml +++ b/agent/shaded/it-harness/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/shaded/logging-logstash/pom.xml b/agent/shaded/logging-logstash/pom.xml index e697dc4e77..7fcc6517ca 100644 --- a/agent/shaded/logging-logstash/pom.xml +++ b/agent/shaded/logging-logstash/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../../.. diff --git a/agent/ui-sandbox/pom.xml b/agent/ui-sandbox/pom.xml index 9ff9363bd3..55183167c0 100644 --- a/agent/ui-sandbox/pom.xml +++ b/agent/ui-sandbox/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/build/license-bundle/pom.xml b/build/license-bundle/pom.xml index dac0ab15eb..d81983f7a6 100644 --- a/build/license-bundle/pom.xml +++ b/build/license-bundle/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/build/multi-lib-tests/pom.xml b/build/multi-lib-tests/pom.xml index b97723e618..8c6a4d676c 100644 --- a/build/multi-lib-tests/pom.xml +++ b/build/multi-lib-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT ../.. diff --git a/central/pom.xml b/central/pom.xml index 675de38a8f..da84d2107a 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT glowroot-central diff --git a/common/pom.xml b/common/pom.xml index e5acdc1c41..05445f36d3 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT glowroot-common diff --git a/common2/pom.xml b/common2/pom.xml index fcb0b4e921..8afefe6cc9 100644 --- a/common2/pom.xml +++ b/common2/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT glowroot-common2 diff --git a/pom.xml b/pom.xml index 7b80748a15..57668ba507 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT pom Glowroot Parent Project diff --git a/ui/pom.xml b/ui/pom.xml index 02b6d81370..bc0bd051e6 100644 --- a/ui/pom.xml +++ b/ui/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT glowroot-ui diff --git a/webdriver-tests/pom.xml b/webdriver-tests/pom.xml index 73bb03c9a2..a61a1a6d90 100644 --- a/webdriver-tests/pom.xml +++ b/webdriver-tests/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT .. diff --git a/wire-api/pom.xml b/wire-api/pom.xml index 7182465282..3e84c24636 100644 --- a/wire-api/pom.xml +++ b/wire-api/pom.xml @@ -7,7 +7,7 @@ org.glowroot glowroot-parent - 0.14.4 + 0.14.5-beta.1-SNAPSHOT glowroot-wire-api From aaa6057288024770e6c4a9b2e98125bbcb06c404 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Mon, 9 Jun 2025 21:40:16 +0200 Subject: [PATCH 15/18] Upd infinispan + mockito + slf4j + testcontainers --- central/pom.xml | 16 ++++++++-------- pom.xml | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/central/pom.xml b/central/pom.xml index da84d2107a..6651c88a27 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -91,19 +91,19 @@ org.infinispan infinispan-core - 15.0.14.Final + 15.2.2.Final org.infinispan infinispan-component-annotations - 15.0.14.Final + 15.2.2.Final compile org.jgroups jgroups - 5.3.15.Final + 5.4.5.Final jakarta.servlet @@ -170,12 +170,12 @@ org.slf4j slf4j-api - 2.0.16 + 2.0.17 org.slf4j jul-to-slf4j - 2.0.16 + 2.0.17 ch.qos.logback @@ -250,19 +250,19 @@ org.testcontainers testcontainers - 1.19.7 + 1.21.1 test org.testcontainers cassandra - 1.19.7 + 1.21.1 test org.testcontainers junit-jupiter - 1.19.7 + 1.21.1 test diff --git a/pom.xml b/pom.xml index 57668ba507..3cf2bf60eb 100644 --- a/pom.xml +++ b/pom.xml @@ -231,12 +231,12 @@ org.mockito mockito-core - 5.11.0 + 5.18.0 org.mockito mockito-junit-jupiter - 5.11.0 + 5.18.0 test From 74929ab3e2a77bd3aaf26d29a768439d8319b56d Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Mon, 9 Jun 2025 21:46:31 +0200 Subject: [PATCH 16/18] Upd byte buddy + grpc + junit --- central/pom.xml | 2 +- pom.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/central/pom.xml b/central/pom.xml index 6651c88a27..72fd50424e 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -196,7 +196,7 @@ net.bytebuddy byte-buddy - 1.15.10 + 1.17.5 diff --git a/pom.xml b/pom.xml index 3cf2bf60eb..216a4b4bb1 100644 --- a/pom.xml +++ b/pom.xml @@ -91,7 +91,7 @@ - 1.72.0 + 1.73.0 3.25.3 3.25.3 @@ -101,7 +101,7 @@ 2.10.1 3.42.0 1.33 - 5.10.2 + 5.12.2 UTF-8 UTF-8 yyyy-MM-dd HH:mm:ss Z From 462051856374440ede19f42ffd041fa4f2bd6b8b Mon Sep 17 00:00:00 2001 From: Geoffrey Date: Tue, 24 Jun 2025 23:01:28 +0200 Subject: [PATCH 17/18] fix #1134 cannot export admin config --- ui/src/main/java/org/glowroot/ui/AdminJsonService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/main/java/org/glowroot/ui/AdminJsonService.java b/ui/src/main/java/org/glowroot/ui/AdminJsonService.java index b1f8441b15..ab0367f9b7 100644 --- a/ui/src/main/java/org/glowroot/ui/AdminJsonService.java +++ b/ui/src/main/java/org/glowroot/ui/AdminJsonService.java @@ -255,7 +255,7 @@ String getHealthchecksIoConfig() throws Exception { String getAllAdmin() throws Exception { Object config; if (central) { - config = configRepository.getAllCentralAdminConfig(); + config = configRepository.getAllCentralAdminConfig().toCompletableFuture().get(); } else { config = configRepository.getAllEmbeddedAdminConfig(); } From 3df46a5e47def4c5a988b209c1de1e5c8252ed11 Mon Sep 17 00:00:00 2001 From: Sylvere Richard Date: Tue, 8 Jul 2025 22:23:37 +0200 Subject: [PATCH 18/18] Upd infinispan --- central/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/central/pom.xml b/central/pom.xml index 72fd50424e..094cb172bb 100644 --- a/central/pom.xml +++ b/central/pom.xml @@ -91,12 +91,12 @@ org.infinispan infinispan-core - 15.2.2.Final + 15.2.4.Final org.infinispan infinispan-component-annotations - 15.2.2.Final + 15.2.4.Final compile