How can I solve this problem in Spring Boot in VS Code, when I click run this commands appear in terminal.

This is pom.xml file:
4.0.0 org.springframework.boot spring-boot-starter-parent 3.2.2 com.quiz test 1.0.0 test Demo project for Spring Boot 21 org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-starter-web com.h2database h2 runtime org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-maven-plugin package com.quiz.test; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class TestApplication { public static void main(String[] args) { SpringApplication.run(TestApplication.class, args); } }
Источник: https://stackoverflow.com/questions/780 ... in-vs-code