├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── maven.yml │ └── release-drafter.yml ├── .gitignore ├── .mvn └── .keep-me ├── README.md ├── config-assembly.xml ├── pom.xml └── src ├── main └── config │ ├── checkstyle │ ├── asf20-header.txt │ ├── empty-header.txt │ └── mit-header.txt │ └── pmd │ └── mojo_rules.xml └── site ├── markdown └── index.md.vm └── site.xml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/.keep-me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/README.md -------------------------------------------------------------------------------- /config-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/config-assembly.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/config/checkstyle/asf20-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/src/main/config/checkstyle/asf20-header.txt -------------------------------------------------------------------------------- /src/main/config/checkstyle/empty-header.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/config/checkstyle/mit-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/src/main/config/checkstyle/mit-header.txt -------------------------------------------------------------------------------- /src/main/config/pmd/mojo_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/src/main/config/pmd/mojo_rules.xml -------------------------------------------------------------------------------- /src/site/markdown/index.md.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/src/site/markdown/index.md.vm -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojohaus/mojo-parent/HEAD/src/site/site.xml --------------------------------------------------------------------------------