You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Martin Funk (JIRA)" <ji...@apache.org> on 2007/06/01 16:09:15 UTC

[jira] Reopened: (WICKET-455) mvn jetty:run; maven-jetty-plugin not configured

     [ https://issues.apache.org/jira/browse/WICKET-455?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Funk reopened WICKET-455:
--------------------------------


As described in the Jetty bug tracker, link given above, this problem should go away when the jetty-plugin is used in the same version as the jetty dependency.
At least for my machine I can confirm this.
So given the current versioning of both in the current parent pom.xml it should be save to aply following two patches:

This allows both to be run using 'mvn jetty:run'
Even debugging as described here:
http://cwiki.apache.org/confluence/display/WICKET/Maven+Jetty+plugin
should work.


 svn diff jdk-1.4/wicket-quickstart/pom.xml -r HEAD
Index: jdk-1.4/wicket-quickstart/pom.xml
===================================================================
--- jdk-1.4/wicket-quickstart/pom.xml   (Revision 543480)
+++ jdk-1.4/wicket-quickstart/pom.xml   (Arbeitskopie)
@@ -55,4 +55,12 @@
                        <artifactId>jetty-management</artifactId>
                </dependency>
        </dependencies>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.mortbay.jetty</groupId>
+                               <artifactId>maven-jetty-plugin</artifactId>
+                       </plugin>
+               </plugins>
+       </build>
 </project>

and:
 svn diff jdk-1.5/wicket-examples/pom.xml -r HEAD
Index: jdk-1.5/wicket-examples/pom.xml
===================================================================
--- jdk-1.5/wicket-examples/pom.xml     (Revision 543480)
+++ jdk-1.5/wicket-examples/pom.xml     (Arbeitskopie)
@@ -112,6 +112,10 @@
                                        </webResources>
                                </configuration>
                        </plugin>
+                       <plugin>
+                               <groupId>org.mortbay.jetty</groupId>
+                               <artifactId>maven-jetty-plugin</artifactId>
+                       </plugin>
                </plugins>
        </build>
 </project>


> mvn jetty:run; maven-jetty-plugin not configured
> ------------------------------------------------
>
>                 Key: WICKET-455
>                 URL: https://issues.apache.org/jira/browse/WICKET-455
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-quickstart
>    Affects Versions: trunk
>            Reporter: Martin Funk
>            Assignee: Jean-Baptiste Quenot
>         Attachments: quickstart-pom.txt
>
>
> maven-jetty-plugin not configured for wicket-quickstart.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.