├── .asf.yaml ├── .gitattributes ├── .github ├── GH-ROBOTS.txt ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── dependency-review.yml │ ├── maven.yml │ └── scorecards-analysis.yml ├── .gitignore ├── BUILDING.txt ├── CODE_OF_CONDUCT.md ├── COMPONENTS.adoc ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── RELEASE-NOTES.txt ├── SECURITY.md ├── pom.xml └── src ├── assembly └── src.xml ├── changes ├── changes.xml └── release-notes.vm ├── media ├── commons-logo-component-100.xcf ├── commons-logo-component.xcf └── logo.png ├── site ├── resources │ └── profile.noanimal └── site.xml └── test ├── pom.xml └── test.js /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/GH-ROBOTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.github/GH-ROBOTS.txt -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.github/workflows/scorecards-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/BUILDING.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPONENTS.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/COMPONENTS.adoc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/RELEASE-NOTES.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/pom.xml -------------------------------------------------------------------------------- /src/assembly/src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/assembly/src.xml -------------------------------------------------------------------------------- /src/changes/changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/changes/changes.xml -------------------------------------------------------------------------------- /src/changes/release-notes.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/changes/release-notes.vm -------------------------------------------------------------------------------- /src/media/commons-logo-component-100.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/media/commons-logo-component-100.xcf -------------------------------------------------------------------------------- /src/media/commons-logo-component.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/media/commons-logo-component.xcf -------------------------------------------------------------------------------- /src/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/media/logo.png -------------------------------------------------------------------------------- /src/site/resources/profile.noanimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/site/resources/profile.noanimal -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/site/site.xml -------------------------------------------------------------------------------- /src/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/test/pom.xml -------------------------------------------------------------------------------- /src/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/commons-parent/HEAD/src/test/test.js --------------------------------------------------------------------------------