├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 1_feature_request.md │ ├── 2_enhancement_request.md │ └── 3_bug_report.md ├── close-label.yml ├── release-notes.yml └── workflows │ ├── add-to-project.yml │ ├── main.yml │ ├── pullrequest.yml │ └── release-notes.yml ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── mvnw ├── mvnw.cmd └── pom.xml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/ISSUE_TEMPLATE/1_feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_enhancement_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/ISSUE_TEMPLATE/2_enhancement_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/ISSUE_TEMPLATE/3_bug_report.md -------------------------------------------------------------------------------- /.github/close-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/close-label.yml -------------------------------------------------------------------------------- /.github/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/workflows/add-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/workflows/pullrequest.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | target 3 | pom-original.xml 4 | /.idea/ 5 | *.iml 6 | -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/axon-bom/HEAD/pom.xml --------------------------------------------------------------------------------