次のMavenチェックスタイルのプラグイン構成があります
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<consoleOutput>true</consoleOutput>
<configLocation>https://someUtl.com/file.xml</configLocation>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
に注意してください
<configLocation>https://someUtl.com/file.xml</configLocation>
file.xml はブラウザーでダウンロードできますが、ログインとパスワードが必要です。Mavenまたはプラグイン構成でこれらのログイン/パスワードを指定する方法はありますか?