-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add docs for proxies and add settings.xml in proxy setup
- Loading branch information
1 parent
8234811
commit 6849a77
Showing
4 changed files
with
72 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 | ||
http://maven.apache.org/xsd/settings-1.0.0.xsd"> | ||
<proxies> | ||
<!-- For HTTP --> | ||
<proxy> | ||
<id>tiny-http-proxy</id> | ||
<active>true</active> | ||
<protocol>http</protocol> | ||
<host>tinyproxy</host> | ||
<port>8888</port> | ||
</proxy> | ||
<!-- For HTTPS --> | ||
<proxy> | ||
<id>tiny-https-proxy</id> | ||
<active>true</active> | ||
<protocol>https</protocol> | ||
<host>tinyproxy</host> | ||
<port>8888</port> | ||
</proxy> | ||
</proxies> | ||
</settings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters