0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

日本語のユーザ名でeclipseでmaven

Posted at

#概要
日本語氏名をユーザ名に設定されている状況でmavenを利用できるようにする。

##Cドライブ直下等の日本語を含まないフォルダを作成する。
ここでは仮に「C:m2」とする。
##C:m2配下にrepositoryフォルダを作成する
##C:m2配下にsettings.xmlを作成する。
##settings.xmlを開き、以下を記載する

    <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
                          https://maven.apache.org/xsd/settings-1.0.0.xsd">
	<localRepository>C:\m2\repository</localRepository>
      <interactiveMode/>
      <usePluginRegistry/>
      <offline/>
      <pluginGroups/>
      <servers/>
      <mirrors/>
      <proxies/>
      <profiles/>
      <activeProfiles/>
    </settings>

##eclipseにて設定読み込み先を指定する。
メインメニュー>ウィンドウ>設定>Maven>ユーザー設定にて、
上記のsettings.xmlを指定し、「設定の更新」ボタンを押下する。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?