Skip to content

Commit

Permalink
Bump LittleProxy from 2.0.22 to 2.2.0 (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev authored Sep 11, 2024
1 parent eeb0f8e commit f1130a9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion browserup-proxy-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ uploadArchives {

dependencies {
api "io.netty:netty-all:${nettyVersion}"
api("xyz.rogfam:littleproxy:${littleProxyVersion}") {
api("io.github.littleproxy:littleproxy:${littleProxyVersion}") {
exclude(group: 'io.netty', module: 'netty-all')
}
api 'de.sstoehr:har-reader:2.3.0'
Expand Down
4 changes: 2 additions & 2 deletions browserup-proxy-mitm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ To use MITM with standalone LittleProxy, add a dependency on the `mitm` module i
```xml
<!-- existing LittleProxy dependency -->
<dependency>
<groupId>xyz.rogfam</groupId>
<groupId>io.github.littleproxy</groupId>
<artifactId>littleproxy</artifactId>
<version>2.0.22</version>
<version>2.2.0</version>
</dependency>

<!-- new dependency on the MITM module -->
Expand Down
2 changes: 1 addition & 1 deletion browserup-proxy-mitm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies {

implementation "io.netty:netty-all:${nettyVersion}"
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation("xyz.rogfam:littleproxy:${littleProxyVersion}") {
implementation("io.github.littleproxy:littleproxy:${littleProxyVersion}") {
exclude(group: 'io.netty', module: 'netty-all')
}

Expand Down
2 changes: 1 addition & 1 deletion browserup-proxy-rest-clients/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ dependencies {
testImplementation 'org.mockito:mockito-core:4.11.0'
testImplementation "org.seleniumhq.selenium:selenium-api:${seleniumVersion}"
testImplementation 'org.awaitility:awaitility:4.2.2'
testImplementation "xyz.rogfam:littleproxy:${littleProxyVersion}"
testImplementation "io.github.littleproxy:littleproxy:${littleProxyVersion}"
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.35.0'
testImplementation 'org.testcontainers:testcontainers:1.20.1'
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ subprojects {
jettyVersion = '9.4.56.v20240826'
log4jVersion = '2.24.0'
nettyVersion = '4.1.113.Final'
littleProxyVersion = '2.0.22'
littleProxyVersion = '2.2.0'
slf4jVersion = '2.0.16'
swaggerVersion = '2.2.23'
guavaVersion = '33.3.0-jre'
Expand Down

0 comments on commit f1130a9

Please sign in to comment.