JSP package.
Here is the list of declaration for jsp-api. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.tomcat</groupId> <artifactId>jsp-api</artifactId> <version>6.0.14</version> </dependency>
If you think this Maven repository POM file listing for jsp-api is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The jsp-api-6.0.14 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Servlet | servlet-api 6.0.14 javax.servlet package | 9 |
The following packages are defined in the jsp-api-6.0.14.jar
javax.servlet.jsp javax.servlet.jsp.el javax.servlet.jsp.tagext
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.tomcat</groupId> <artifactId>jsp-api</artifactId> <version>6.0.14</version> <description>JSP package</description> <dependencies> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>el-api</artifactId> <version>6.0.14</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>servlet-api</artifactId> <version>6.0.14</version> <scope>compile</scope> </dependency> </dependencies> </project>