forked from rieckpil/blog-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildJdk11Projects.sh
executable file
·43 lines (40 loc) · 1.21 KB
/
buildJdk11Projects.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
set -e
set -o pipefail
declare -a arr=("whats-new-in-spring-boot-2.1"
"bootstrap-jakarta-ee-8-application"
"custom-maven-archetype"
"demo-crud-application"
"deploy-spring-boot-to-gke"
"spring-boot-hibernate-flyway-best-practices"
"random-data-in-java-using-java-faker"
"guide-to-jakarta-ee-with-react-and-postgresql"
"five-java-9-features"
"java-ee-with-kotlin"
"spring-boot-with-kotlin"
"spring-boot-feature-toggles-with-togglz"
"spring-boot-integration-tests-wiremock"
"telegram-bot-notifications-with-java"
"websockets-with-jakarta-ee"
"open-liberty-maven-plugin-review"
"jakarta-ee-react-file-handling"
"remote-debugging-spring-boot-application"
"review-microshed-testing"
"maven-plugins-to-ensure-quality"
"spring-web-client-demo"
"spring-boot-uploading-and-downloading-files-with-react"
"spring-web-client-oauth2-reactive-stack"
"spring-web-client-oauth2-servlet-stack"
"spring-web-test-client"
"whats-new-in-microprofile-3.1"
"whats-new-in-spring-boot-2.1"
"whats-new-in-spring-boot-2.2"
"spring-web-test-client"
"github-actions-java-maven"
"spring-web-client-expose-metrics"
"spring-boot-selenium-integration-tests"
)
for project in "${arr[@]}"
do
mvn -B -f $project/pom.xml verify
done