Hi, I have a weird issue with regards to publishin...
# general
b
Hi, I have a weird issue with regards to publishing. I manage to publish my artifact jar, jar.md5 and jar.sha1 but it fails to publish the pom
here is my ivysettings
Copy code
<ivysettings>

    <credentials host="<http://my-nexus.com|my-nexus.com>"
                 realm="Sonatype Nexus Repository Manager"
                 username="${login}"
                 passwd="${password}"/>

    <property name="web.ivy.pattern"
              value="[organisation]/[module]/[revision]/[type]s/[artifact].[ext]"
              override="false" />
    <property name="web.artifact.pattern"
              value="[organisation]/[module]/[revision]/[type]s/[artifact].[ext]"
              override="false" />
    <settings defaultResolver="chain-repos"/>
    <resolvers>
        <chain name="chain-repos" returnFirst="true">
            <ibiblio name="<http://my-nexus.com|my-nexus.com>"
                     m2compatible="true"
                     usepoms="true"
                     root="<https://my-nexus.com/repository/releases-sandbox/>"/>
        </chain>

        <!--<url name="<http://my-nexus.com|my-nexus.com>"-->
             <!--m2compatible="true">-->
            <!--<artifact pattern="<https://my-nexus.com/content/groups/global/${web.artifact.pattern}>" />-->
        <!--</url>-->

        <url name="<http://my-nexus.com|my-nexus.com>" m2compatible="true">
            <ivy pattern="<https://my-nexus.com/repository/releases-sandbox/${web.ivy.pattern}>" />
            <artifact pattern="<https://my-nexus.com/repository/releases-sandbox/${web.artifact.pattern}>" />
        </url>


    </resolvers>
</ivysettings>