Skip to content
Compare
Choose a tag to compare
@tisonkun tisonkun released this 06 Jan 08:21
· 124 commits to main since this release
v1.0.3
6788cbb

HawkEye 1.0.3

Simple license header checker and formatter, in multiple distribution forms.

Try it out!

Native Image

docker run --rm -v $(pwd):/github/workspace ghcr.io/korandoru/hawkeye-native:v1.0.3 check -h

Executable JAR

This executable requires JRE 17+ existence.

export HAWKEYE_VERSION=1.0.3
wget https://repo1.maven.org/maven2/io/korandoru/hawkeye/commandline/$HAWKEYE_VERSION/commandline-$HAWKEYE_VERSION-bin.tar.gz
tar -xvzf commandline-$HAWKEYE_VERSION-bin.tar.gz
hawkeye-$HAWKEYE_VERSION/hawkeye check -h

JRE Image

docker run --rm -v $(pwd):/github/workspace ghcr.io/korandoru/hawkeye:v1.0.3 check -h

GitHub Actions

# prerequisite: add a `licenserc.toml` file in the root of your project
- name: Check License Header
  uses: korandoru/hawkeye@v1

What's Changed

This version is mainly to refactor build logics.

  • build(maven): Try preparationGoals and completionGoals by @tisonkun in #27

Full Changelog: v1.0.2...v1.0.3