Author: ate
Date: Wed Aug 13 17:40:44 2008
New Revision: 685735
URL: http://svn.apache.org/viewvc?rev=685735&view=rev
Log:
If the .m2/settings.xml defines a custom </localRepository> location, executing
jetspeed-mvn for a custom pom *and* a custom jetspeed-mvn-settings.xml,
the custom jetspeed-mvn-settings.xml also needs to be configured using that
same </localRepository>, otherwise locally installled artifacts might not be
resolved.
As this is quit a common case but easily forgotten, the currently defined
localRepository path is now automatically passed onto the spawned maven
execution for a custom pom as well.
Modified:
portals/jetspeed-2/portal/trunk/maven/jetspeed-mvn-maven-plugin/src/main/java/org/apache/jetspeed/maven/plugins/MvnMojo.java
Modified:
portals/jetspeed-2/portal/trunk/maven/jetspeed-mvn-maven-plugin/src/main/java/org/apache/jetspeed/maven/plugins/MvnMojo.java
URL:
http://svn.apache.org/viewvc/portals/jetspeed-2/portal/trunk/maven/jetspeed-mvn-maven-plugin/src/main/java/org/apache/jetspeed/maven/plugins/MvnMojo.java?rev=685735&r1=685734&r2=685735&view=diff
==============================================================================
---
portals/jetspeed-2/portal/trunk/maven/jetspeed-mvn-maven-plugin/src/main/java/org/apache/jetspeed/maven/plugins/MvnMojo.java
(original)
+++
portals/jetspeed-2/portal/trunk/maven/jetspeed-mvn-maven-plugin/src/main/java/org/apache/jetspeed/maven/plugins/MvnMojo.java
Wed Aug 13 17:40:44 2008
@@ -331,6 +331,10 @@
request.setShowErrors(getLog().isErrorEnabled());
request.setDebug(getLog().isDebugEnabled());
request.setOffline(settings.isOffline());
+ if (settings.getLocalRepository() != null)
+ {
+ request.setLocalRepositoryDirectory(new
File(settings.getLocalRepository()));
+ }
String mavenOpts = props.getProperty("jetspeed.mvn.mavenOpts", null);
if (StringUtils.isEmpty(mavenOpts) &&
!StringUtils.isEmpty(target.mavenOpts))
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]