Ask Questions and Find Answers
Important:
Ask is now read-only. You can review any existing questions and answers, but not add anything new.
But - don't panic! While ask is no more, we've replaced it with discuss - the new Liferay Discussion Forum! Read more here here or just visit the site here:
discuss.liferay.com
How can test latest snapshot versions from github master?
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?
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?
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:
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>