Hi,
I'm currently testing wicket contrib dojo, and I ran into some issues with
the examples:
- the compilation failed:
D:\users\xh\wkspace\sourceforge\wicket-stuff\wicket-contrib-dojo-examples\src\main\java\wicket\contrib\dojo\examples\SuggestionListSample.java:[7,59]
cannot find symbol
symbol : class DojoRemoteSuggestionList
location: package wicket.contrib.dojo.markup.html.form.suggestionlist
So I removed this example to compile.
- the pom has some problems, bad package format (should be war) no java
source version setting (should be 1.5), and no configuration of jetty plugin
which is great to test.
Hence I attach a fixed pom with which you can easily run "mvn jetty:run" to
test the examples.
BTW, thanks for your work on WCD, it seems really easy to use great dojo
components!
- Xavier
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>wicket-stuff</groupId>
<artifactId>wicket-contrib-dojo-examples</artifactId>
<packaging>war</packaging>
<version>1.3-incubating-SNAPSHOT</version>
<name>Wicket Contrib Dojo Examples</name>
<description>An integration project for the Ajax JavaScript library Dojo. This project provides the basic AjaxHandler for DOJO processing at the serverside, and Dojo/Wicket components.</description>
<url>http://wicket-stuff.sourceforge.net/wicket-contrib-dojo</url>
<inceptionYear>2005</inceptionYear>
<organization>
<name>Wicket developers</name>
<url>http://wicket.sourceforge.net</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<url>http://sourceforge.net/tracker/?group_id=119783</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Wicket Announcements List</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-announce</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-announce</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=wicket-announce</archive>
</mailingList>
<mailingList>
<name>Wicket User List</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-user</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-user</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=wicket-user</archive>
</mailingList>
<mailingList>
<name>Wicket Development List</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-develop</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-develop</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=wicket-develop</archive>
</mailingList>
<mailingList>
<name>Wicket CVS commit List</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-autocvs</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-autocvs</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=wicket-autocvs</archive>
</mailingList>
<mailingList>
<name>Wicket automated builds List</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-builds</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/wicket-builds</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=wicket-builds</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>Eelco Hillenius</name>
<id>Eelco</id>
<email>eelco12 at users.sf.net</email>
</developer>
<developer>
<name>Jean-Baptiste Quenot</name>
<id>quenotj</id>
<email>quenotj at users.sf.net</email>
</developer>
<developer>
<name>Vincent Demay</name>
<id>vdemay</id>
<email>vdemay at users.sf.net</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>wicket-stuff</groupId>
<artifactId>wicket-contrib-dojo</artifactId>
<version>1.3-incubating-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>rome</groupId>
<artifactId>rome</artifactId>
<version>0.8</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<filtering>false</filtering>
<directory>src/main/java</directory>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.0.1</version>
<configuration>
<scanIntervalSeconds>60</scanIntervalSeconds>
<webAppSourceDirectory>src/webapp</webAppSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user