Author: gerdogdu
Date: Tue May 18 13:55:20 2010
New Revision: 945652
URL: http://svn.apache.org/viewvc?rev=945652&view=rev
Log:
Update for running JSF2 Myfaces in Jetty 8.0.0.M0
Modified:
openwebbeans/trunk/samples/jsf2sample/pom.xml
Modified: openwebbeans/trunk/samples/jsf2sample/pom.xml
URL:
http://svn.apache.org/viewvc/openwebbeans/trunk/samples/jsf2sample/pom.xml?rev=945652&r1=945651&r2=945652&view=diff
==============================================================================
--- openwebbeans/trunk/samples/jsf2sample/pom.xml (original)
+++ openwebbeans/trunk/samples/jsf2sample/pom.xml Tue May 18 13:55:20 2010
@@ -73,15 +73,6 @@
<version>2.0.0</version>
</dependency>
- <!-- JSTL -->
-<!-- TODO DROP?
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.2</version>
- </dependency>
--->
-
<!-- JSR 299 API -->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
@@ -100,21 +91,14 @@
<artifactId>openwebbeans-spi</artifactId>
<version>${project.version}</version>
</dependency>
-
- <!-- EL Impl -->
+
+ <!-- JSTL -->
<dependency>
- <groupId>org.glassfish.web</groupId>
- <artifactId>el-impl</artifactId>
- <version>2.1.2-b04</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.2</version>
+ </dependency>
+
</dependencies>
<build>
@@ -122,10 +106,10 @@
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
+ <artifactId>jetty-maven-plugin</artifactId>
+ <version>8.0.0.M0</version>
<configuration>
- <contextPath>${build.finalName}</contextPath>
- <scanIntervalSeconds>3</scanIntervalSeconds>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
</configuration>
</plugin>
</plugins>