1. ホーム

[解決済み】Maven - ソースとjavadocsを常にダウンロードする

2022-04-07 06:52:53

質問

mavenを以下のように設定する方法はありますか? 常に ソースとjavadocsをダウンロードしますか?指定する -DdownloadSources=true -DdownloadJavadocs=true を毎回実行するのは、かなり面倒になります。

解決方法は?

settings.xml ファイルを開く ~/.m2/settings.xml (存在しない場合は作成する)。プロパティを追加したセクションを追加します。そして、activeProfilesに新しいプロファイルが含まれていることを確認します。

<settings>

   <!-- ... other settings here ... -->

    <profiles>
        <profile>
            <id>downloadSources</id>
            <properties>
                <downloadSources>true</downloadSources>
                <downloadJavadocs>true</downloadJavadocs>
            </properties>
        </profile>
    </profiles>

    <activeProfiles>
        <activeProfile>downloadSources</activeProfile>
    </activeProfiles>
</settings>