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

Dependency

The document lists several Maven dependencies for a project, including Spring Context Support, Spring Data JPA, Thymeleaf, Spring Web, and H2 Database. Each dependency is specified with its group ID, artifact ID, and version number. The H2 Database dependency is marked with a test scope.

Uploaded by

jenaprahallad2
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)
7 views1 page

Dependency

The document lists several Maven dependencies for a project, including Spring Context Support, Spring Data JPA, Thymeleaf, Spring Web, and H2 Database. Each dependency is specified with its group ID, artifact ID, and version number. The H2 Database dependency is marked with a test scope.

Uploaded by

jenaprahallad2
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

<!-- https://mvnrepository.com/artifact/org.

springframework/spring-context-
support -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>6.2.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa --
>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>3.4.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf -->


<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.1.1.RELEASE</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->


<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>6.2.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.h2database/h2 -->


<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.2.224</version>
<scope>test</scope>
</dependency>

You might also like