-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathcreate-project.sh
46 lines (39 loc) · 1.17 KB
/
create-project.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
44
45
46
#!/usr/bin/env bash
# Common configuration
SPRING_BOOT_VERSION="3.4.3"
JAVA_VERSION="17"
BUILD_TOOL="maven"
PACKAGING="jar"
BASE_VERSION="1.0.0"
BASE_GROUP="io.javatab.microservices"
DEPENDENCIES="actuator,webflux"
# Function to initialize a Spring Boot microservice
init_microservice() {
local service_name=$1
local package_suffix=$2
spring init \
--boot-version="$SPRING_BOOT_VERSION" \
--build="$BUILD_TOOL" \
--java-version="$JAVA_VERSION" \
--packaging="$PACKAGING" \
--name="${service_name}-service" \
--package-name="${BASE_GROUP}.${package_suffix}" \
--groupId="${BASE_GROUP}.${package_suffix}" \
--dependencies="$DEPENDENCIES" \
--version="$BASE_VERSION" \
"${service_name}-service"
}
# Main execution
main() {
# Create and enter microservices directory
mkdir -p microservices
cd microservices || exit 1
# Initialize each microservice
init_microservice "course" "core.course"
init_microservice "review" "core.review"
init_microservice "course-composite" "composite.course"
# Return to parent directory
cd .. || exit 1
}
# Execute main function
main