Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Apply pl.tlinkowski.gradle.my.superpom plugin
Browse files Browse the repository at this point in the history
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
tlinkowski committed Aug 16, 2019
1 parent 022e854 commit ef85ad7
Show file tree
Hide file tree
Showing 30 changed files with 201 additions and 931 deletions.
39 changes: 39 additions & 0 deletions .appveyor.yml
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
15 changes: 14 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,17 @@ gradle-app.setting
#
# IntelliJ
#
*.iml
*.iml

#
# Node.js
#
/node_modules/
/package-lock.json

#
# SuperPOM
#
/.grenrc.yml
/package.json
/release.bat
7 changes: 6 additions & 1 deletion .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

156 changes: 0 additions & 156 deletions .idea/codeStyles/Project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/codeStyles/codeStyleConfig.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/copyright/Apache_2_0.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

Loading

0 comments on commit ef85ad7

Please sign in to comment.