|
From: <tri...@us...> - 2008-07-24 11:35:19
|
Revision: 50
http://staticwiki.svn.sourceforge.net/staticwiki/?rev=50&view=rev
Author: triathlon98
Date: 2008-07-24 11:35:14 +0000 (Thu, 24 Jul 2008)
Log Message:
-----------
SW-14 allow use of jetty:run
Modified Paths:
--------------
trunk/staticwiki-servlet/pom.xml
Modified: trunk/staticwiki-servlet/pom.xml
===================================================================
--- trunk/staticwiki-servlet/pom.xml 2008-07-24 11:01:51 UTC (rev 49)
+++ trunk/staticwiki-servlet/pom.xml 2008-07-24 11:35:14 UTC (rev 50)
@@ -15,7 +15,21 @@
</description>
<build>
<plugins>
+ <!-- Run the application using "mvn jetty:run" -->
<plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <configuration>
+ <!-- Log to the console. -->
+ <requestLog implementation="org.mortbay.jetty.NCSARequestLog">
+ <!-- This doesn't do anything for Jetty, but is a workaround for a Maven bug
+ that prevents the requestLog from being set. -->
+ <append>true</append>
+ </requestLog>
+ </configuration>
+ </plugin>
+
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|