Compare commits

..

1 Commits

Author SHA1 Message Date
root 36ac943185 Update 'RomaTest.md' 1 month ago

@ -9,14 +9,47 @@ public class Application {
} }
testing is in progress testing is in progress
Testing is in progress 1 Testing is in progress 1
testing 1233 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
testing xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
test testing <modelVersion>4.0.0</modelVersion>
testing 01 <groupId>com.example</groupId>
testing 02 <artifactId>my-spring-boot-app</artifactId>
testing 01 <version>0.0.1-SNAPSHOT</version>
testing 02 <packaging>jar</packaging>
testing 01 <name>my-spring-boot-app</name>
testing 0788 <description>A simple Spring Boot application</description>
testing 01 <parent>
testing 0090 <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.4</version>
<relativePath/> </parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading…
Cancel
Save