Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ The library provides some proxy setting search strategies to read the proxy sett
* I don't like the Windows DLL and usage of JNI. Replaced both by JNA.

## Usage
### Adding the jar to your build
Add the dependency to your pom.xml
```Xml
<dependency>
<groupId>com.github.markusbernhardt</groupId>
<artifactId>proxy-vole</artifactId>
<version>1.0.5</version>
</dependency>
```
or to you gradle.build:
```
compile 'com.github.markusbernhardt:proxy-vole:1.0.5'
```

### Using the default strategy to find the settings
```Java
Expand Down