Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit 908a3a9

Browse files
Fix broken path references/tests pointing to /lightbody/ url references
1 parent 0be62fd commit 908a3a9

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -378,18 +378,22 @@ The BrowserUpProxyServer implementation uses native DNS resolution by default, b
378378

379379
## Building the latest from source
380380

381-
You'll need maven (`brew install maven` if you're on OS X):
381+
You'll need `gradle`. Please see [here](https://docs.gradle.org/current/userguide/installation.html) how to install gradle on your system.
382+
`[~]$ gradle build --info`
382383

383-
[~]$ mvn -DskipTests
384+
Also you can use gradle wrapper:
385+
`[~]$ ./gradlew build --info`
384386

385-
You'll find the standalone BrowserUp Proxy distributable zip at `browserup-dist/target/browserup-proxy-3.0.0-beta-bin.zip`. Unzip the contents and run the `browserup-proxy` or `browserup-proxy.bat` files in the `bin` directory.
386-
387-
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:
387+
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:
388388
```xml
389389
<dependency>
390-
<groupId>com.browserup.bup</groupId>
391-
<artifactId>browserup-core</artifactId>
392-
<version>3.0.0-beta</version>
390+
<groupId>com.browserup</groupId>
391+
<artifactId>browserup-proxy-core</artifactId>
392+
<version>1.0.0-SNAPSHOT</version>
393393
<scope>test</scope>
394394
</dependency>
395395
```
396+
Or for gradle:
397+
```yml
398+
testImplementation 'com.browserup:browserup-proxy-core:1.0.0-SNAPSHOT'
399+
```

0 commit comments

Comments
 (0)