Skip to content

Commit

Permalink
Prepare for next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst committed Aug 15, 2022
1 parent 7505b9b commit 51a0062
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 16 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

# [Unreleased - 2.2.3-SNAPSHOT]

# [2.2.2]
## Changed
### Dependencies
Expand Down
32 changes: 18 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ BrowserUp [load tests your website with *real browsers*]((https://browserup.com/

### Getting started: Embedded Mode
To use BrowserUp Proxy in your tests or application, add the `browserup-proxy-core` dependency to your pom:

```xml
<dependency>
<groupId>com.github.valfirst.browserup-proxy</groupId>
<artifactId>browserup-proxy-core</artifactId>
<version>2.2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.valfirst.browserup-proxy</groupId>
<artifactId>browserup-proxy-core</artifactId>
<version>2.2.2</version>
<scope>test</scope>
</dependency>
```

Start the proxy:
Expand Down Expand Up @@ -363,15 +364,18 @@ Also you can use gradle wrapper:
`[~]$ ./gradlew build --info`

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 maven pom:

```xml
<dependency>
<groupId>com.github.valfirst.browserup-proxy</groupId>
<artifactId>browserup-proxy-core</artifactId>
<version>2.2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.valfirst.browserup-proxy</groupId>
<artifactId>browserup-proxy-core</artifactId>
<version>2.2.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
```

Or for gradle:
```yml
testImplementation 'com.browserup:browserup-proxy-core:2.2.2'

```gradle
testImplementation 'com.browserup:browserup-proxy-core:2.2.3-SNAPSHOT'
```
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.3-SNAPSHOT
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ subprojects {
apply plugin: 'signing'

group = 'com.github.valfirst.browserup-proxy'
version = '2.2.2'
version = '2.2.3-SNAPSHOT'

sourceCompatibility=1.8

Expand Down

0 comments on commit 51a0062

Please sign in to comment.