0% found this document useful (0 votes)
21 views1 page

Pom

The document describes a Maven project that uses Spring Boot and Thymeleaf for views. It defines dependencies on Spring Boot starters for Thymeleaf, web, and web services.

Uploaded by

ABBASSI RABAH
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views1 page

Pom

The document describes a Maven project that uses Spring Boot and Thymeleaf for views. It defines dependencies on Spring Boot starters for Thymeleaf, web, and web services.

Uploaded by

ABBASSI RABAH
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<?xml version="1.0" encoding="UTF-8"?

>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>ubi.ubisys.sprgvues</groupId>
<artifactId>sprgvues</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>sprgvues</name>
<description>Les vues dans Spring MVC</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
...

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web-services</artifactId>
</dependency>
...
</dependencies>

...

</project>

You might also like