Re: [jdf-users] Is the servlet-API in the BOM?
by StevenBoscarine
That worked. Thank you!
On 7/4/2012 5:41 PM, Burr Sutter wrote:
> I believe you want
> <dependency>
> <groupId>org.jboss.spec.javax.servlet</groupId>
> <artifactId>jboss-servlet-api_3.0_spec</artifactId>
> <scope>provided</scope>
> </dependency>
>
>
> check out the EAP6 version of the quickstarts there are a few servlet related ones.
>
>
> On Jul 4, 2012, at 5:22 PM, StevenBoscarine wrote:
>
>> 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?
>>
>> _______________________________________________
>> jdf-users mailing list
>> jdf-users(a)lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/jdf-users
12 years, 5 months
Is the servlet-API in the BOM?
by StevenBoscarine
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?
12 years, 5 months