For those of you who need to work offline for extended periods and are
using the SNAPSHOT version of Lift (or any maven project for that
matter), then executing "mvn -o" will only working for a day, since
maven attempts to update any snapshoted code day.
I was able to bypass this via a snapshots entry in my pom file as follows:
<repository>
... relavent repo data
<snapshots>
<enabled>true</enabled>
<updatePolicy>never<updatePolicy>
</snapshots>
</repository>
I had to put this into both the snapshot repo and the release repo entries.
It worked in settings.xml and/or project pom file
If you look into maven profiles this can be customized even more.
I can add this info to the new maven entries on the wiki, if it's
accurate or relavent.
--
Sent from my mobile device
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Lift" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---