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

All Dependencies

The document lists Maven dependencies for a Java project, including Jakarta Servlet API, JSP API, JSTL API, MySQL Connector, and Hibernate Core. Each dependency specifies the group ID, artifact ID, version, and scope where applicable. The versions range from 3.0.0 to 8.0.33, indicating a focus on recent library updates.

Uploaded by

Sapna
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)
2 views2 pages

All Dependencies

The document lists Maven dependencies for a Java project, including Jakarta Servlet API, JSP API, JSTL API, MySQL Connector, and Hibernate Core. Each dependency specifies the group ID, artifact ID, version, and scope where applicable. The versions range from 3.0.0 to 8.0.33, indicating a focus on recent library updates.

Uploaded by

Sapna
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/ 2

<dependencies>

<!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api -->

<dependency>

<groupId>jakarta.servlet</groupId>

<artifactId>jakarta.servlet-api</artifactId>

<version>5.0.0</version>

<scope>provided</scope>

</dependency>

<!-- https://mvnrepository.com/artifact/jakarta.servlet.jsp/jakarta.servlet.jsp-api
-->

<dependency>

<groupId>jakarta.servlet.jsp</groupId>

<artifactId>jakarta.servlet.jsp-api</artifactId>

<version>3.1.1</version>

<scope>provided</scope>

</dependency>

<!--
https://mvnrepository.com/artifact/jakarta.servlet.jsp.jstl/jakarta.servlet.jsp.jst
l-api -->

<dependency>

<groupId>jakarta.servlet.jsp.jstl</groupId>

<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>

<version>3.0.0</version>

</dependency>

<!-- https://mvnrepository.com/artifact/org.glassfish.web/jakarta.servlet.jsp.jstl
-->

<dependency>

<groupId>org.glassfish.web</groupId>

<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.1</version>

</dependency>

<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->


<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.0.33</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.hibernate.orm/hibernate-core -->


<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>6.6.0.Final</version>
</dependency>

</dependencies>

You might also like