[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
| [m2e-users] Why does the "Maven Repositories" view only show one repo in the "Project Repositories" list? | 
I'm looking at a project with a POM file, with a "repositories" section 
like this:
---------------------------
  <repositories>
    <repository>
      <id>opendaylight-release</id>
      <name>opendaylight-release</name>
<url>https://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
    </repository>
    <repository>
      <id>opendaylight-snapshot</id>
      <name>opendaylight-snapshot</name>
<url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
    </repository>
  </repositories>
---------------
When I display the "Maven Repositories" view, it shows four top-level 
entries:
* Local Repositories
* Global Repositories
* Project Repositories
* Custom Repositories
The first three have arrows next to them, indicating non-empty contents.
I'm specifically interested in the "Project Repositories" list.  I would 
assume this would list all the repositories listed in the POM.  However, 
what I see in this list is just the first repo listed in the POM, the 
"opendaylight-release" repo.  The "opendaylight-snapshot" repo is not there.
What am I missing?