Re: [Wicket-user] How to build wicket 2.0 from svn download

2006-09-17 Thread Martin Funk
Hi Stefan,

wicket is nicely set up as a Maven multi module projekt and the parent
of all modules may be found in wicket-parent.
Build instructions may be found there:
https://svn.sourceforge.net/svnroot/wicket/trunk/wicket-parent/README.TXT

mvn -Pjdk1.4 clean install
should install the Java 1.4 specific modules and
mvn -Pjdk1.5 clean install
the Java 5 modules.

Have fun,

Martin


Stefan Lindner schrieb:
 I checked out wicket 2.0 from svn. Now I build wicket base (in subdir
 'wicket') eith

  mvn -Dmaven.test.skip=true package

 to skip the failing tests. This creates a file named
 wicket-2.0-SNAPSHOT.jar in subdir wicket/target.

 Now I change to subdir 'wicket-extensions'. I do the same as above but
 now I get

   
 wicket-extensions\src\java\wicket\extensions\markup\html\repeater\
   RepeatingView.java:[26,31] cannot find symbol
   symbol  : class AbstractRepeater
   location: package wicket.markup.html.list

 But the wicket.markup.html.list.AbstractRepeater class is part of wicket
 base and it seems to be compiled without any error. What am I doing
 wrong? How can I build the current wicket extensions?

 Stefan

 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

   



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to build wicket 2.0 from svn download

2006-09-17 Thread Martijn Dashorst
Wicket is in 2.0 a Java 5 project, and the projects haven't yet been
altered to take advantage of maven's multi module support. I think
this will happen somewhere in the beginning of october when I have
finished my current chapter for WIA...

Martijn

On 9/17/06, Martin Funk [EMAIL PROTECTED] wrote:
 Hi Stefan,

 wicket is nicely set up as a Maven multi module projekt and the parent
 of all modules may be found in wicket-parent.
 Build instructions may be found there:
 https://svn.sourceforge.net/svnroot/wicket/trunk/wicket-parent/README.TXT

 mvn -Pjdk1.4 clean install
 should install the Java 1.4 specific modules and
 mvn -Pjdk1.5 clean install
 the Java 5 modules.

 Have fun,

 Martin


 Stefan Lindner schrieb:
  I checked out wicket 2.0 from svn. Now I build wicket base (in subdir
  'wicket') eith
 
   mvn -Dmaven.test.skip=true package
 
  to skip the failing tests. This creates a file named
  wicket-2.0-SNAPSHOT.jar in subdir wicket/target.
 
  Now I change to subdir 'wicket-extensions'. I do the same as above but
  now I get
 
 
  wicket-extensions\src\java\wicket\extensions\markup\html\repeater\
RepeatingView.java:[26,31] cannot find symbol
symbol  : class AbstractRepeater
location: package wicket.markup.html.list
 
  But the wicket.markup.html.list.AbstractRepeater class is part of wicket
  base and it seems to be compiled without any error. What am I doing
  wrong? How can I build the current wicket extensions?
 
  Stefan
 
  -
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job 
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 



 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-- 
Download Wicket 1.2.2 now! New Ajax components: Tree, TreeTable and ModalWindow
-- http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to build wicket 2.0 from svn download

2006-09-16 Thread Mark Derricutt
Do mvn install.This will install the package (wicket) into the local repository, which is where maven will look for it when compiling wicket-extensions .On 9/17/06, 
Stefan Lindner [EMAIL PROTECTED] wrote:
I checked out wicket 2.0 from svn. Now I build wicket base (in subdir'wicket') eith mvn -Dmaven.test.skip=true package
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to build wicket 2.0 from svn download

2006-09-16 Thread Eelco Hillenius
Always do a clean, like 'mvn clean install -Dmaven.test.skip=true

Also, if you check out wicket/-extensions/-auth/-spring/-parent you
can go to directory parent and build all of them in one command
(./build-all.sh)

Eelco


On 9/16/06, Stefan Lindner [EMAIL PROTECTED] wrote:
 I checked out wicket 2.0 from svn. Now I build wicket base (in subdir
 'wicket') eith

  mvn -Dmaven.test.skip=true package

 to skip the failing tests. This creates a file named
 wicket-2.0-SNAPSHOT.jar in subdir wicket/target.

 Now I change to subdir 'wicket-extensions'. I do the same as above but
 now I get


 wicket-extensions\src\java\wicket\extensions\markup\html\repeater\
 RepeatingView.java:[26,31] cannot find symbol
 symbol  : class AbstractRepeater
 location: package wicket.markup.html.list

 But the wicket.markup.html.list.AbstractRepeater class is part of wicket
 base and it seems to be compiled without any error. What am I doing
 wrong? How can I build the current wicket extensions?

 Stefan

 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user