Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation on Windows #30

Open
wants to merge 4 commits into
base: trunk
Choose a base branch
from

Commits on Apr 12, 2021

  1. Configuration menu
    Copy the full SHA
    37aaab9 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2021

  1. Update dependencies to fix build

    Using the previous dependency versions, the build always failed during
    the documentation tasks; this was due to an incompatibility between
    Kotlin and Gradle (see Kotlin/dokka#428).
    
    Update Kotlin to 1.4.30 (not the latest version, but the latest version
    available in IDEA). KTLint could not be updated to 0.41.0 because of
    some weird behavior with the plugin (sample/Main.kt indentation is
    marked as incorrect).
    
    Update the configuration blocks, as well (the `dokka` block is no more).
    garfieldnate committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    38441cd View commit details
    Browse the repository at this point in the history
  2. Always run all build variants

    Without this, if Windows fails then we won't test Mac.
    garfieldnate committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    7d16bee View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2021

  1. set java encoding

    I'm honestly not sure why this is required, since Kotlin files are
    supposed to always be UTF-8. Without this, though, the build fails on
    Windows due to all special table characters being turned into ???.
    
    Fixes JakeWharton#29.
    garfieldnate committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    b99368c View commit details
    Browse the repository at this point in the history