You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
BrowserMob Proxy allows you to manipulate HTTP requests and responses, capture HTTP content, and export performance data as a [HAR file](http://www.softwareishard.com/blog/har-12-spec/).
4
4
BMP works well as a standalone proxy server, but it is especially useful when embedded in Selenium tests.
5
5
6
-
The latest version of BrowserMob Proxy is 2.1.2, powered by [LittleProxy](https://github.com/adamfisk/LittleProxy).
6
+
The latest version of BrowserMob Proxy is 2.1.4, powered by [LittleProxy](https://github.com/adamfisk/LittleProxy).
7
7
8
8
If you're running BrowserMob Proxy within a Java application or Selenium test, get started with [Embedded Mode](#getting-started-embedded-mode). If you want to run BMP from the
9
9
command line as a standalone proxy, start with [Standalone](#getting-started-standalone).
@@ -14,7 +14,7 @@ To use BrowserMob Proxy in your tests or application, add the `browsermob-core`
14
14
<dependency>
15
15
<groupId>net.lightbody.bmp</groupId>
16
16
<artifactId>browsermob-core</artifactId>
17
-
<version>2.1.2</version>
17
+
<version>2.1.4</version>
18
18
<scope>test</scope>
19
19
</dependency>
20
20
```
@@ -91,7 +91,7 @@ The legacy interface, implicitly defined by the ProxyServer class, has been extr
91
91
proxyServer.start();
92
92
// [...]
93
93
94
-
// To use the LittleProxy-powered 2.1.2 release, simply change to
94
+
// To use the LittleProxy-powered 2.1.4 release, simply change to
95
95
// the LegacyProxyServer interface and the adapter for the new
@@ -221,7 +221,7 @@ If you're using Java and Selenium, the easiest way to get started is to embed th
221
221
<dependency>
222
222
<groupId>net.lightbody.bmp</groupId>
223
223
<artifactId>browsermob-core</artifactId>
224
-
<version>2.1.2</version>
224
+
<version>2.1.4</version>
225
225
<scope>test</scope>
226
226
</dependency>
227
227
```
@@ -402,14 +402,14 @@ You'll need maven (`brew install maven` if you're on OS X):
402
402
403
403
[~]$ mvn -DskipTests
404
404
405
-
You'll find the standalone BrowserMob Proxy distributable zip at `browsermob-dist/target/browsermob-proxy-2.1.3-SNAPSHOT-bin.zip`. Unzip the contents and run the `browsermob-proxy` or `browsermob-proxy.bat` files in the `bin` directory.
405
+
You'll find the standalone BrowserMob Proxy distributable zip at `browsermob-dist/target/browsermob-proxy-2.1.5-SNAPSHOT-bin.zip`. Unzip the contents and run the `browsermob-proxy` or `browsermob-proxy.bat` files in the `bin` directory.
406
406
407
407
When you build the latest code from source, you'll have access to the latest snapshot release. To use the SNAPSHOT version in your code, modify the version in your pom:
0 commit comments