Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-users] Why does the "Maven Repositories" view only show one repo in the "Project Repositories" list?

You also have to consider any inherited repos either from a parent pom or from settings.xml file(s).

Eric

On Jun 1, 2016 7:13 PM, "David M. Karr" <davidmichaelkarr@xxxxxxxxx> wrote:
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?
_______________________________________________
m2e-users mailing list
m2e-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/m2e-users

Back to the top