0% found this document useful (0 votes)
26 views2 pages

Spring Boot Dependencies Overview

The document lists various dependencies for a Spring Boot project, including JPA, JDBC, Gson, and MySQL connector. It also includes Lombok as an optional dependency and a starter for testing. Each dependency is specified with its group ID and artifact ID, along with the version and scope where applicable.

Uploaded by

Juon Dan
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)
26 views2 pages

Spring Boot Dependencies Overview

The document lists various dependencies for a Spring Boot project, including JPA, JDBC, Gson, and MySQL connector. It also includes Lombok as an optional dependency and a starter for testing. Each dependency is specified with its group ID and artifact ID, along with the version and scope where applicable.

Uploaded by

Juon Dan
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

<dependencies>

<dependency>

<groupId>[Link]</groupId>

<artifactId>spring-boot-starter-data-jpa</artifactId>

</dependency>

<dependency>

<groupId>[Link]</groupId>

<artifactId>spring-boot-starter-jdbc</artifactId>

</dependency>

<dependency>

<groupId>[Link]</groupId>

<artifactId>gson</artifactId>

<version>2.10.1</version>

</dependency>

<dependency>

<groupId>[Link]</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>

<dependency>

<groupId>[Link]</groupId>

<artifactId>mysql-connector-j</artifactId>

<scope>runtime</scope>

</dependency>

<dependency>

<groupId>[Link]</groupId>

<artifactId>lombok</artifactId>

<optional>true</optional>

</dependency>

<dependency>

<groupId>[Link]</groupId>
<artifactId>spring-boot-starter-test</artifactId>

<scope>test</scope>

</dependency>

</dependencies>

You might also like