[jdf-users] Is the servlet-API in the BOM?

StevenBoscarine stevenboscarine at gmail.com
Wed Jul 4 17:22:27 EDT 2012


Do the BOMs have the Java EE APIs?  What about Servlet?  I didn't see it in:

	<dependency>
		<groupId>org.jboss.bom</groupId>
		<artifactId>jboss-javaee-6.0-with-tools</artifactId>
		<version>1.0.0.M12-redhat-1</version>
		<type>pom</type>
		<scope>import</scope>
	</dependency>
	<dependency>
		<groupId>org.jboss.bom</groupId>
		<artifactId>jboss-javaee-6.0-with-hibernate</artifactId>
		<version>1.0.0.M12-redhat-1</version>
		<type>pom</type>
		<scope>import</scope>
	</dependency>

I wanted to declare something like either:
	<dependency>
		<groupId>javax</groupId>
		<artifactId>javaee-api</artifactId>
	</dependency>
...or...
	<dependency>
		<groupId>javax.servlet</groupId>
		<artifactId>servlet</artifactId>
	</dependency>
...and use them in a project.  How do I get the RedHat supported version of the servlet API?



More information about the jdf-users mailing list