You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2022/01/03 17:39:11 UTC

[brooklyn-ui] branch master updated: add explicit reference to jetty client

This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git


The following commit(s) were added to refs/heads/master by this push:
     new 6d67d29  add explicit reference to jetty client
6d67d29 is described below

commit 6d67d291691b549cb4a424fa843cb52a8760cb50
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Mon Jan 3 17:32:38 2022 +0000

    add explicit reference to jetty client
    
    now needed to build with bump of jetty to 9.4.43
---
 modularity-server/proxy/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/modularity-server/proxy/pom.xml b/modularity-server/proxy/pom.xml
index 044e176..2ae626c 100644
--- a/modularity-server/proxy/pom.xml
+++ b/modularity-server/proxy/pom.xml
@@ -39,6 +39,11 @@
             <version>${jetty.version}</version>
         </dependency>
         <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-client</artifactId>
+            <version>${jetty.version}</version>
+        </dependency>
+        <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>javax.servlet-api</artifactId>
             <version>${servlet-api.version}</version>