chore: adds tests for springboot templates (#1059)

* adding tests for springboot templates

* adding test-springboot to test-template goals

* removing space

* removing vendor license
This commit is contained in:
salaboy 2022-06-14 12:24:16 -05:00 committed by GitHub
parent 5f6d11c491
commit a454ea9ae9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -98,7 +98,7 @@ clean: clean_templates ## Remove generated artifacts such as binaries and schema
##@ Templates
#############
test-templates: test-go test-node test-python test-quarkus test-rust test-typescript ## Run all template tests
test-templates: test-go test-node test-python test-quarkus test-springboot test-rust test-typescript ## Run all template tests
test-go: ## Test Go templates
cd templates/go/cloudevents && go mod tidy && go test
@ -116,6 +116,10 @@ test-quarkus: ## Test Quarkus templates
cd templates/quarkus/cloudevents && mvn test && mvn clean
cd templates/quarkus/http && mvn test && mvn clean
test-springboot: ## Test Spring Boot templates
cd templates/springboot/cloudevents && mvn test && mvn clean
cd templates/springboot/http && mvn test && mvn clean
test-rust: ## Test Rust templates
cd templates/rust/cloudevents && cargo test && cargo clean
cd templates/rust/http && cargo test && cargo clean