You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@provisionr.apache.org by as...@apache.org on 2013/07/10 08:36:26 UTC

git commit: PROVISIONR-46 : Fix Jenkins

Updated Branches:
  refs/heads/master e896d1ca2 -> 3f00190a6


PROVISIONR-46 : Fix Jenkins

 - Created a profile which can pick maven.repo.local protery and set the pax property


Project: http://git-wip-us.apache.org/repos/asf/incubator-provisionr/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-provisionr/commit/3f00190a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-provisionr/tree/3f00190a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-provisionr/diff/3f00190a

Branch: refs/heads/master
Commit: 3f00190a6e0bcef6421cbf7b6998e17046ed18aa
Parents: e896d1c
Author: Rahul Sharma <rs...@apache.org>
Authored: Wed Jul 10 10:17:08 2013 +0530
Committer: Andrei Savu <as...@apache.org>
Committed: Wed Jul 10 09:27:05 2013 +0300

----------------------------------------------------------------------
 karaf/assembly-tests/pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-provisionr/blob/3f00190a/karaf/assembly-tests/pom.xml
----------------------------------------------------------------------
diff --git a/karaf/assembly-tests/pom.xml b/karaf/assembly-tests/pom.xml
index a9992bf..e9b6a30 100644
--- a/karaf/assembly-tests/pom.xml
+++ b/karaf/assembly-tests/pom.xml
@@ -50,6 +50,27 @@
         </dependency>
     </dependencies>
 
+    <profiles>
+        <profile>
+            <id>local-repo-profile</id>
+            <activation>
+                <property>
+                    <name>maven.repo.local</name>
+                </property>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <configuration>
+                            <argLine>-Dorg.ops4j.pax.url.mvn.localRepository=${maven.repo.local}</argLine>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
     <build>
         <plugins>
             <plugin>