This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply pl.tlinkowski.gradle.my.superpom plugin
Starts #4 (converted build.gradle and settings.gradle to Kotlin DSL) Fixes #5 (through my SuperPOM) Fixes #6 (through Kordamp) Starts #12 (through Gradle Modules Plugin) Fixes #14 (through Kordamp) Fixes #15 (through my SuperPOM) Fixes #20 (through Kordamp)
- Loading branch information
1 parent
022e854
commit ef85ad7
Showing
30 changed files
with
201 additions
and
931 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# reference: https://www.appveyor.com/docs/appveyor-yml/ | ||
|
||
image: Visual Studio 2017 # https://www.appveyor.com/docs/windows-images-software/ | ||
|
||
version: "#{build} ({branch})" | ||
|
||
branches: | ||
except: | ||
- /^\d+\.\d+\.\d+$/ # skip builds related to addTemporaryVersionTag | ||
|
||
#region JAVA | ||
environment: | ||
matrix: | ||
- JAVA_HOME: C:\Program Files\Java\jdk12 | ||
|
||
install: | ||
- SET PATH=%JAVA_HOME%\bin;%PATH | ||
- java --version | ||
#endregion | ||
|
||
#region GRADLE | ||
build_script: | ||
- gradlew.bat assemble | ||
|
||
test_script: | ||
- gradlew.bat check --stacktrace | ||
|
||
cache: | ||
- C:\Users\appveyor\.gradle | ||
|
||
on_finish: | ||
# upload test results via REST-api: https://github.com/appveyor/ci/issues/92#issuecomment-307242316 | ||
- ps: | | ||
$wc = New-Object 'System.Net.WebClient' | ||
Get-ChildItem . -Name -Recurse 'TEST-*.xml' | | ||
Foreach-Object { | ||
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_)) | ||
} | ||
#endregion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.