mirror of
https://github.com/ethauvin/kobalt-doc.git
synced 2025-04-27 20:48:13 -07:00
Document proxies.
This commit is contained in:
parent
9eebd2a4ab
commit
a9796f4378
1 changed files with 19 additions and 2 deletions
|
@ -300,6 +300,12 @@ dependencies {
|
||||||
<repo>http://jcenter.com</repo>
|
<repo>http://jcenter.com</repo>
|
||||||
<repo>http://example.com</repo>
|
<repo>http://example.com</repo>
|
||||||
</defaultRepos>
|
</defaultRepos>
|
||||||
|
<proxies>
|
||||||
|
<proxy>
|
||||||
|
<host>proxy-host.com</host>
|
||||||
|
<port>1234</port>
|
||||||
|
</proxy>
|
||||||
|
</proxies>
|
||||||
</kobaltSettings></pre>
|
</kobaltSettings></pre>
|
||||||
<p>
|
<p>
|
||||||
Here is a list of the parameters you can configure:
|
Here is a list of the parameters you can configure:
|
||||||
|
@ -343,8 +349,12 @@ dependencies {
|
||||||
<td><code>~/.kobalt/localMavenRepo</code></td>
|
<td><code>~/.kobalt/localMavenRepo</code></td>
|
||||||
<td>Where Kobalt publishes artifacts when the task <code>publishToLocalMaven</code> is invoked.</td>
|
<td>Where Kobalt publishes artifacts when the task <code>publishToLocalMaven</code> is invoked.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><code>proxies</code></td>
|
||||||
|
<td><code>None</code></td>
|
||||||
|
<td>One or more proxies that Kobalt will use to download Maven dependencies.</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h2 class="section" id="templates">Templates</h2>
|
<h2 class="section" id="templates">Templates</h2>
|
||||||
<p>
|
<p>
|
||||||
Templates are invoked with the <code>--init</code> parameter and typically used when you are creating
|
Templates are invoked with the <code>--init</code> parameter and typically used when you are creating
|
||||||
|
@ -696,6 +706,13 @@ New versions found:
|
||||||
<td>Use this flag if Kobalt just notified you that a new version is available and you want to update. Another way of doing this is to edit <code>kobalt/wrapper/kobalt-wrapper.properties</code> manually.</td>
|
<td>Use this flag if Kobalt just notified you that a new version is available and you want to update. Another way of doing this is to edit <code>kobalt/wrapper/kobalt-wrapper.properties</code> manually.</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<p>
|
||||||
|
<em>Note:</em> If the <code>--update</code> parameter can't download Kobalt because your machine is
|
||||||
|
behind a proxy, you can specify that proxy as a system environment variable when launching the JVM
|
||||||
|
to run Kobalt:
|
||||||
|
<pre>java -DhttpProxy=host:port -jar kobalt/wrapper/kobalt-wrapper.jar --update</pre>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<h2 class="section" id="testing">Testing</h2>
|
<h2 class="section" id="testing">Testing</h2>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue