Skip to content

fix(QTDI-1645): bump httpclient and guava #1052

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@
<log4j2.version>2.20.0</log4j2.version>
<rhino.version>1.7.14</rhino.version>
<tomitribe-crest.version>0.32</tomitribe-crest.version>
<httpclient.version>4.5.14</httpclient.version>
<guava.version>33.4.8-jre</guava.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -903,6 +905,17 @@
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito4.version}</version>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
Expand Down
1 change: 0 additions & 1 deletion remote-engine-customizer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.3.1-jre</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
6 changes: 4 additions & 2 deletions sample-parent/sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@
</properties>

<dependencies>
<dependency><!-- just to show a specific dependency usage, not that required for that sample by itself -->
<dependency>
<!-- just to show a specific dependency usage, not that required for that sample by itself -->
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency><!-- not for components, just for the Main sample, a real component would use scope test or not use it at all -->
<dependency>
<!-- not for components, just for the Main sample, a real component would use scope test or not use it at all -->
<groupId>org.talend.sdk.component</groupId>
<artifactId>component-runtime-manager</artifactId>
<version>${project.version}</version>
Expand Down
Loading