作業中のプロジェクトでそのリポジトリのライブラリを使用できるように、settings.xml ファイルにリポジトリを追加しようとしています。これが私の現在のsettings.xmlファイルです。
<settings>
.
.
<profiles>
<profile>
<id>standard-extra-repos</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
...
<repositories>
<repository>
<id>xuggle repo</id>
<name>Xuggler Repository</name>
<url>http://xuggle.googlecode.com/svn/trunk/repo/share/java/</url>
<layout>default</layout>
<releases><enabled>true</enabled><updatePolicy>never</updatePolicy></releases>
<snapshots><enabled>true</enabled><updatePolicy>never</updatePolicy></snapshots>
</repository>
</repositories>
<pluginRepositories>
...
</pluginRepositories>
</profile>
</profiles>
.
</settings>
M2E (Maven 2 Eclipse) で適切な依存関係を検索してプロジェクトに追加できるように、Xuggler リポジトリを settings.xml に追加したいと考えています。II が window->show view->Maven->maven repositories に移動すると、xuggle リポジトリが表示されますが、完全に空です。必要な Jar が見つかりません。