├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ ├── feature_request.md │ └── improvement-request.md ├── pull_request_template.md └── workflows │ └── maven.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── _config.yml ├── pom.xml └── src ├── main └── java │ └── com │ └── github │ └── romankh3 │ └── maventemplaterepository │ └── MavenTemplateRepository.java └── test └── java └── com └── github └── romankh3 └── maventemplaterepository └── MavenTemplateRepositoryTest.java /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/.github/ISSUE_TEMPLATE/improvement-request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- 1 | ## 1.0-SNAPSHOT 2 | * Created template for new repositories. -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/_config.yml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/github/romankh3/maventemplaterepository/MavenTemplateRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/src/main/java/com/github/romankh3/maventemplaterepository/MavenTemplateRepository.java -------------------------------------------------------------------------------- /src/test/java/com/github/romankh3/maventemplaterepository/MavenTemplateRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/template-repository/maven-template-repository/HEAD/src/test/java/com/github/romankh3/maventemplaterepository/MavenTemplateRepositoryTest.java --------------------------------------------------------------------------------