vmassol     2004/06/27 03:01:42

  Modified:    jetty/xdocs changes.xml
               jetty    project.xml
  Added:       jetty/xdocs faq.fml
  Log:
  - Added FAQ
  - Added FAQ entry about how to start Jetty without blocking the build thread
  
  Revision  Changes    Path
  1.6       +5 -0      maven-plugins/jetty/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jetty/xdocs/changes.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- changes.xml       16 May 2004 03:04:37 -0000      1.5
  +++ changes.xml       27 Jun 2004 10:01:42 -0000      1.6
  @@ -24,6 +24,11 @@
       <author email="[EMAIL PROTECTED]">Vincent Massol</author>
     </properties>
     <body>
  +    <release version="1.2-SNAPSHOT" date="in CVS">
  +      <action dev="vmassol" type="add">
  +        Added a FAQ
  +      </action>
  +    </release>
       <release version="1.1" date="2004-05-15">
         <action dev="vmassol" type="fix">Added dependency on
           <code>commons-jelly-tags-xml</code>. It seems this is required for some 
configurations of Maven.
  
  
  
  1.1                  maven-plugins/jetty/xdocs/faq.fml
  
  Index: faq.fml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>

  

  <!-- 

  /*

   * Copyright 2004 The Apache Software Foundation.

   * 

   * Licensed under the Apache License, Version 2.0 (the "License");

   * you may not use this file except in compliance with the License.

   * You may obtain a copy of the License at

   * 

   *      http://www.apache.org/licenses/LICENSE-2.0

   * 

   * Unless required by applicable law or agreed to in writing, software

   * distributed under the License is distributed on an "AS IS" BASIS,

   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

   * See the License for the specific language governing permissions and

   * limitations under the License.

   */

   -->

  

  <!-- $Id: faq.fml,v 1.7 2004/05/05 07:34:38 brett Exp $ -->

  

  <faqs title="Frequently Asked Questions">

  

    <part id="General">

      <title>General</title>

     

      <faq id="jetty-thread">

        <question>How do I start Jetty without blocking the build?</question>

        <answer>

  <source><![CDATA[

  <j:thread>

    <attainGoal name="jetty:run-war"/>

  </j:thread>

  <ant:waitfor>

    <ant:http url="[url to wait for to decide when server is started]"/>

  </ant:waitfor>

  ]]></source>

        </answer>

      </faq>

  

    </part>

    

  </faqs>

  

  
  
  
  1.10      +6 -1      maven-plugins/jetty/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jetty/project.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.xml       25 Jun 2004 15:24:29 -0000      1.9
  +++ project.xml       27 Jun 2004 10:01:42 -0000      1.10
  @@ -23,7 +23,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-jetty-plugin</id>
     <name>Maven Jetty plugin</name>
  -  <currentVersion>1.1</currentVersion>
  +  <currentVersion>1.2-SNAPSHOT</currentVersion>
     <shortDescription>Run Jetty</shortDescription>
     <url>http://maven.apache.org/reference/plugins/jetty/</url>
     <issueTrackingUrl>http://jira.codehaus.org/browse/MPJETTY</issueTrackingUrl>
  @@ -43,6 +43,11 @@
         <id>1.1</id>
         <name>1.1</name>
         <tag>MAVEN_JETTY_1_1</tag>
  +    </version>
  +    <version>
  +      <id>1.2</id>
  +      <name>1.2</name>
  +      <tag>HEAD</tag>
       </version>
     </versions>
     <developers>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to