You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/02/22 14:17:22 UTC

[10/12] incubator-tinkerpop git commit: Installing maven using choco

Installing maven using choco

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

Branch: refs/heads/tp31
Commit: bc58b8baa3debec17a076469894c0074afbaad1b
Parents: 884e45d
Author: Marvin Froeder <ve...@gmail.com>
Authored: Mon Feb 15 16:45:40 2016 +1300
Committer: Marvin Froeder <ma...@vizexplorer.com>
Committed: Mon Feb 22 11:29:00 2016 +1300

----------------------------------------------------------------------
 appveyor.yml | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/bc58b8ba/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
index e31d2ea..a99752a 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -7,17 +7,8 @@ environment:
 os: Windows Server 2012
 
 install:
-  - ps: |
-      Add-Type -AssemblyName System.IO.Compression.FileSystem
-      if (!(Test-Path -Path "C:\maven" )) {
-        (new-object System.Net.WebClient).DownloadFile('https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-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.3.9\bin;%JAVA_HOME%\bin;%PATH%
-  - cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
-  - cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
-  - cmd: mvn --version
-  - cmd: java -version
+  - cmd: choco install maven -y -f
+  - cmd: refreshenv
 
 build_script:
   - mvn clean install -B -Dci