&tag(Maven2); *目次 [#e84e99d5] #contents *参考情報 [#h3622948] *Tips [#n0ccaf7e] **mvn archetype:createで使用するプラグインのバージョンを指定する [#w50eb952] -[[Maven Archetype Plugin – archetype:create:http://maven.apache.org/archetype/maven-archetype-plugin/create-mojo.html]]にあるFull nameを使ってバージョンまで指定できる。通常archetype:createを使っているところを次のように書き換える。 # before mvn archetype:create -DgroupId=jp.home -DartifactId=sample -DarchetypeArtifactId=maven-archetype-quickstart # after mvn org.apache.maven.plugins:maven-archetype-plugin:2.2:create -DgroupId=jp.home -DartifactId=sample -DarchetypeArtifactId=maven-archetype-quickstart *トラブルシューティング [#mf20b2cc] **「Repository 'central' will be blacklisted」といわれる(Parallels Desktop 8) [#v4dd5724] -以下のエラーが発生。ネットワーク関係かと思っていたら、「Specified destination directory c annot be created: C:\Windows\System32\config\systemprofile\.m2\repository\org\ap ache\maven\plugins」のほうが重要だった。 #pre{{ [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'archetype'. [INFO] org.apache.maven.plugins: checking for updates from central [WARNING] repository metadata for: 'org.apache.maven.plugins' could not be retri eved from repository: central due to an error: Specified destination directory c annot be created: C:\Windows\System32\config\systemprofile\.m2\repository\org\ap ache\maven\plugins [INFO] Repository 'central' will be blacklisted }} -[[Maven settings.xml file on Windows 7 (Ant, Maven and Build Tools forum at JavaRanch):http://www.coderanch.com/t/586404/tools/Maven-settings-xml-file-Windows]]によると、java.homeで取得されるフォルダの場所がおかしくなっているのが現ポイ。 -[[猫好きモバイルアプリケーション開発者記録 IntelliJ IDEAのプロファイル情報が変な場所に出力される問題 (Windows7):http://mobileapplication.blog.fc2.com/blog-entry-19.html]]によれば、Windows Updateや、Parallels Toolsのインストールでレジストリ変数がおかしくなってしまうことがあるもよう。以下のキーを削除すればよいらしい。 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders] -とりあえず変更しても元に戻るのはParallelsのせいなのかな?