I know for javaee-api-5 we can use the following maven dependency:
<dependency>
<groupId>javaee</groupId>
<artifactId>javaee-api</artifactId>
<version>5</version>
</dependency>
But if I don't want to use this single jar(cause there is no source or javadoc for this dependency) then what maven dependencies I need to add to get the javaee-api-5 functionality?
One such dependency might be:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>