Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b766ce8bbd37
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 882171828456
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 26, 2016

  1. simplify appveyor.yml

    AppVeyor added Maven 3.3.9 as a pre-installed package, so we don't have to install manually anymore. It is available in their build image of [September 19, 2016](https://www.appveyor.com/updates/)
    
    refs: 
      - #4075 (comment)
      - appveyor/ci#998
    mprins authored Sep 26, 2016
    Copy the full SHA
    457a84d View commit details
  2. Merge pull request #4180 from mprins/patch-1

    Simplify appveyor.yml, Maven is now a pre-installed package
    headius authored Sep 26, 2016
    Copy the full SHA
    8821718 View commit details
Showing with 1 addition and 11 deletions.
  1. +1 −11 appveyor.yml
12 changes: 1 addition & 11 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -8,21 +8,11 @@ environment:
- JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0

install:
- ps: >-
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven\apache-maven-3.3.9" )) {
(new-object System.Net.WebClient).DownloadFile(
'https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/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: echo %PATH%
- cmd: java -version
- mvn -X -v

cache:
- C:\maven -> appveyor.yml
- C:\Users\appveyor\.m2\repository -> pom.xml

test_script: