File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ # for CI with appveyor.yml
2
+ # Ref: http://www.yegor256.com/2015/01/10/windows-appveyor-maven.html
3
+ version : ' {build}'
4
+ os : Windows Server 2012
5
+ install :
6
+ - ps : |
7
+ Add-Type -AssemblyName System.IO.Compression.FileSystem
8
+ if (!(Test-Path -Path "C:\maven" )) {
9
+ (new-object System.Net.WebClient).DownloadFile(
10
+ 'http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip',
11
+ 'C:\maven-bin.zip'
12
+ )
13
+ [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
14
+ }
15
+ - cmd : SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH%
16
+ - cmd : SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
17
+ - cmd : SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
18
+ build_script :
19
+ - mvn clean package --batch-mode -DskipTest
20
+ test_script :
21
+ - mvn clean install --batch-mode
22
+ cache :
23
+ - C:\maven\
24
+ - C:\Users\appveyor\.m2
Original file line number Diff line number Diff line change 29
29
</developers >
30
30
<issueManagement >
31
31
<system >github</system >
32
- <url >https://github.com/swagger-api/swagger-core /issues</url >
32
+ <url >https://github.com/swagger-api/swagger-codegen /issues</url >
33
33
</issueManagement >
34
34
<mailingLists >
35
35
<mailingList >
You can’t perform that action at this time.
0 commit comments