Я настроил Nexus на прокси для публичных репозиториев. Поиск зависимостей работает хорошо, но когда я пытаюсь найти плагин, например, "maven-compiler-plugin", это дает 0 результатов. Индексы в Nexus в порядке, и там существует артефакт плагина.
Может кто-нибудь сказать, как настроить его так, чтобы он мог получать результаты поиска плагинов?
Вот мои настройки:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8080/content/groups/public</url>
</mirror>
</mirrors>
<servers>
<server>
<id>releases</id>
<username>user</username>
<password>password</password>
</server>
<server>
<id>snapshots</id>
<username>user</username>
<password>password</password>
</server>
<server>
<id>thirdparty</id>
<username>user</username>
<password>password</password>
</server>
<server>
<id>nexus</id>
<username>user</username>
<password>password</password>
</server>
</servers>
<profiles>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
Заранее спасибо!