You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2016/04/14 05:40:23 UTC

[5/5] nifi git commit: NIFI-1654 Adjusting configuration for Appveyor CI.

NIFI-1654 Adjusting configuration for Appveyor CI.


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

Branch: refs/heads/NIFI-1654
Commit: c256e1fd38fc73ee7ff3fe9d1a2fa1c4451e8254
Parents: a32338b
Author: Aldrin Piri <al...@apache.org>
Authored: Wed Apr 13 23:40:12 2016 -0400
Committer: Aldrin Piri <al...@apache.org>
Committed: Wed Apr 13 23:40:12 2016 -0400

----------------------------------------------------------------------
 appveyor.yml | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/c256e1fd/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
index 932211a..9f979ea 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,20 +1,22 @@
-version: '0.6.0-SNAPSHOT-{build}'
+version: '0.7.0-SNAPSHOT-{build}'
 os: Windows Server 2012
+environment:
+  JAVA_HOME: C:\Program Files\Java\jdk1.7.0
 install:
   - ps: |
       Add-Type -AssemblyName System.IO.Compression.FileSystem
       if (!(Test-Path -Path "C:\maven" )) {
         (new-object System.Net.WebClient).DownloadFile(
-          'http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip',
+          'http://www.us.apache.org/dist/maven/maven-3/3.1.1/binaries/apache-maven-3.1.1-bin.zip',
           'C:\maven-bin.zip'
         )
         [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
       }
-  - cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH%
+  - cmd: SET PATH=C:\maven\apache-maven-3.1.1\bin;%JAVA_HOME%\bin;%PATH%
   - cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
   - cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
 build_script:
-  - mvn clean package --batch-mode -DskipTest
+  - mvn clean package --batch-mode -DskipTests
 test_script:
   - mvn clean install --batch-mode -Pcontrib-check
 cache: