RE: How can test latest snapshot versions from github master?

Stanimir Marinov, modified 6 Years ago. New Member Posts: 3 Join Date: 2/27/19 Recent Posts
https://github.com/liferay/liferay-faces-bridge-api

I can only install it in maven local..

jitpack cannot deals with this package:
https://github.com/jitpack/jitpack.io/issues/3754

Do you have Nexus repo for the snapshots?
thumbnail
Kyle Joseph Stiemann, modified 6 Years ago. Liferay Master Posts: 760 Join Date: 1/14/13 Recent Posts
Hi Stanimir,
Unfortunately, our CI server that builds our SNAPSHOTs is down. Sorry for the inconvenience. We're working on it, but for now, you'll need to build SNAPSHOTs locally. When our CI server is back up and running, you can use the following repository for SNAPSHOTs:
<profile>
    <id>liferay-faces-snapshots</id>
    <activation>
        <activebydefault>true</activebydefault>
    </activation>
    <repositories>
        <repository>
            <id>liferay-faces-snapshots</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>
</profile>