You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2023. It is now read-only.
ci: fix github actions deploy
GitHub actions deploy was using the old deprecated way to set env variables.
Update to use the newest way to set an env variable.
fix: duplicate dependency flagged across different modules (#102)
When a dependency is used across multiple modules, then it gets flagged up as duplicated. Update
this to reset the dependency list every time a different module is being checked
closes#97
fix: duplicate dependency flagged across different modules (#102)
When a dependency is used across multiple modules, then it gets flagged up as duplicated. Update
this to reset the dependency list every time a different module is being checked
closes#97
fix: lexicographic order invalid (#21)
* fix: lexicographic ordering doesn't properly check for :
For users who have multiple repositories then the Lexicographic ordering gets confused, as it will
see that `:` is higher than `.`, so it would allow items such as `com.chesire:lifecyklelog` to
come after `com.chesire.lintrules:lint-gradle`. Made it replace instances of `:` with a `.` and
then do a straight compare, which should produce a valid result
* chore: update changelog
Update to include fix info for next build