Skip to content

Commit

Permalink
upgrade spring-boot 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yeahbutstill committed May 30, 2024
1 parent 7e35f6b commit 8bb9910
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
13 changes: 13 additions & 0 deletions lb.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
gcloud compute instances create nucleus-jumphost-762 --project=qwiklabs-gcp-04-f7ca0e0a6e94 --zone=europe-west4-c --machine-type=e2-medium --network-interface=network-tier=PREMIUM,stack-type=IPV4_ONLY,subnet=default --metadata=enable-oslogin=true --maintenance-policy=MIGRATE --provisioning-model=STANDARD --service-account=763801095178-compute@developer.gserviceaccount.com --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --create-disk=auto-delete=yes,boot=yes,device-name=nucleus-jumphost-762,image=projects/debian-cloud/global/images/debian-12-bookworm-v20240415,mode=rw,size=10,type=projects/qwiklabs-gcp-04-f7ca0e0a6e94/zones/europe-west4-c/diskTypes/pd-balanced --no-shielded-secure-boot --shielded-vtpm --shielded-integrity-monitoring --labels=goog-ec-src=vm_add-gcloud --reservation-affinity=any

gcloud compute instances create www1 \
--zone=europe-west4-c \
--tags=network-lb-tag \
--machine-type=e2-medium \
--image-family=debian-11 \
--image-project=debian-cloud \
--metadata=startup-script='#!/bin/bash
apt-get update
apt-get install -y nginx
service nginx start
sed -i -- 's/nginx/Google Cloud Platform - '"\$HOSTNAME"'/' /var/www/html/index.nginx-debian.html
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.5</version>
<version>3.3.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.yeahbutstill</groupId>
Expand All @@ -15,7 +15,7 @@
<description>Demo project for Spring Boot RESTful API Contact Management</description>
<properties>
<java.version>22</java.version>
<spring-modulith.version>1.1.4</spring-modulith.version>
<spring-modulith.version>1.2.0</spring-modulith.version>
</properties>
<dependencies>
<dependency>
Expand All @@ -34,6 +34,10 @@
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.modulith</groupId>
<artifactId>spring-modulith-starter-core</artifactId>
Expand Down

0 comments on commit 8bb9910

Please sign in to comment.