私は、並列アーティファクト解決に複数のアーティファクトスレッドを使用するために、advice from the mvn projectに従っています。このコマンドは、私に望ましい結果を与えるようです。settings.xmlでmavenシステムのプロパティを定義するにはどうすればよいですか?
mvn -Dmaven.artifact.threads=10 dependency:resolve-plugins
このsettings.xmlには、自動的にMVNするすべての呼び出しにmaven.artifact.threads
を設定しますか?
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<profiles>
<profile>
<id>moreDependencyThreads</id>
<activation>
<property>
<name>maven.artifact.threads</name>
<value>10</value>
</property>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>
<activeProfiles>
<activeProfile>moreDependencyThreads</activeProfile>
</activeProfiles>
</settings>
あなたが使うのですか? – khmarbaise
システムプロパティは 'settings.xml'で定義できません。 – khmarbaise
@khmarbaise - 3.3.9 – Freiheit