Repository: mahout
Updated Branches:
  refs/heads/master f7476a4b7 -> af73bd743


fix travis profile in pom.xml


Project: http://git-wip-us.apache.org/repos/asf/mahout/repo
Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/af73bd74
Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/af73bd74
Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/af73bd74

Branch: refs/heads/master
Commit: af73bd743c7020dd4ae3fde8f0aa803d54147d84
Parents: f7476a4
Author: Andrew Palumbo <[email protected]>
Authored: Wed Apr 20 02:04:35 2016 -0400
Committer: Andrew Palumbo <[email protected]>
Committed: Wed Apr 20 02:04:35 2016 -0400

----------------------------------------------------------------------
 .travis.yml        |  2 +-
 math-scala/pom.xml | 46 +++++++++++++++++++++++-----------------------
 2 files changed, 24 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mahout/blob/af73bd74/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 371bd0d..bbbdf80 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,7 @@ branches:
 matrix:
   include:
     - jdk: "oraclejdk7"
-      env: PROFILE="-Dhadoop.version=2.4.1 -Dflink.version=1.0.1 
-Dspark.version=1.5.2"
+      env: PROFILE="-Dhadoop.version=2.4.1 -Dflink.version=1.0.1 
-Dspark.version=1.5.2 -Ptravis"
 
 git:
   depth: 10

http://git-wip-us.apache.org/repos/asf/mahout/blob/af73bd74/math-scala/pom.xml
----------------------------------------------------------------------
diff --git a/math-scala/pom.xml b/math-scala/pom.xml
index cfaf4cc..ee1c8fa 100644
--- a/math-scala/pom.xml
+++ b/math-scala/pom.xml
@@ -176,28 +176,28 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+      <id>travis</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <!-- Limit memory for unit tests in Travis -->
+              <argLine>-Xmx512m</argLine>
+            </configuration>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-failsafe-plugin</artifactId>
+            <configuration>
+              <!-- Limit memory for integration tests in Travis -->
+              <argLine>-Xmx1536m</argLine>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
-  <profile>
-    <id>travis</id>
-    <build>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-surefire-plugin</artifactId>
-          <configuration>
-            <!-- Limit memory for unit tests in Travis -->
-            <argLine>-Xmx512m</argLine>
-          </configuration>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-failsafe-plugin</artifactId>
-          <configuration>
-            <!-- Limit memory for integration tests in Travis -->
-            <argLine>-Xmx1536m</argLine>
-          </configuration>
-        </plugin>
-      </plugins>
-    </build>
-  </profile>
 </project>

Reply via email to