LoginSignup
15
10

More than 5 years have passed since last update.

mavenのプロキシ設定

Last updated at Posted at 2018-12-04

日々プロキシと戦うあなたに

mvn -v

上記を実行すると

Apache Maven: -----
Maven home: ------
Java version: -----
OS name: -----

といった感じで情報が出ます。

ここの Maven home:以下、conf/setting.xml に以下を追加します。

<proxies>
   <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>${host}</host>
      <port>${port}</port>
    </proxy>
  </proxies>

これで設定は完了です。健闘を祈る。

15
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
10