Maven と Artifactory をインストールしました。
Artifactory にはインターネット接続があります。
このようにMavenを構成しました。
<?xml version="1.0" encoding="UTF-8"?>
<settings
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<localRepository>X:/.m2/repository</localRepository>
<interactiveMode>true</interactiveMode>
<usePluginRegistry>false</usePluginRegistry>
<offline>false</offline>
<profiles>
<profile>
<id>dev</id>
<repositories>
<repository>
<id>MY_Artifactory</id>
<url>http://myServer/artifactory/repo</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>MY_Artifactory</id>
<url>http://myServer/artifactory/repo</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>dev</activeProfile>
</activeProfiles>
Artifactory でのみ検索し、ローカル インターネットで直接試行する必要があることを Maven に伝えるにはどうすればよいですか?