chrisdchristo / capsule-maven-plugin

Capsule Maven Plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for mirrors

balbusm opened this issue · comments

I'm trying to create fat jar for multiproject capsule as described in #28.
However in my organization access to maven central is restricted. We are using mirrors.
My settings.xml defines mirrors:

<mirrors>
  <mirror>
    <id>nexus</id>
    <mirrorOf>*</mirrorOf>
    <url>MY_ORGANIZATION_MIRROR</url>
  </mirror>
</mirrors>

The problem is that fat jar doesn't contain Repository tag as thin jar.
Could you change the code that Repository tag is automatically added for fat jar too?

ah yep good catch!

Works great! Thanks!