Developer's Diary
Software development, with Terry Ebdon
19-Feb-2019 Travis CI & Doxygen for Groovy

Travis Continuous Integration

  • 16:34 Added a `.travis.yml file to Enable continuous integration with Travis CI.
    language: groovy
    before_cache:
    - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
    cache:
    directories:
    - $HOME/.gradle/caches/
    - $HOME/.gradle/wrapper/
    jdk:
    - oraclejdk8
    - openjdk11

Making Groovy Doxygen compatible

I added a ; to class members, for Doxygen compatibility. This is required as I've configured Doxygen to think that *.groovy files are actually Java source files. Groovy doesn't care about the semicolons, but Doxygen gets confused if they're missing.

18-FEB-2019 👈 Top of page 👉 22-FEB-2019

© 2020 Terry Ebdon.

Find me coding on GitHub, networking on LinkedIn, answering questions on Stack Exchange and hanging out on twitter.