Re: Get libs without installing Maven?

2008-03-11 Thread bob2
-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Get-libs-without-installing-Maven--tp13403139p15976649.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe

Re: Get libs without installing Maven?

2008-03-11 Thread bob2
/Get-libs-without-installing-Maven--tp13403139p15976654.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Get libs without installing Maven?

2008-03-11 Thread Eelco Hillenius
On Tue, Mar 11, 2008 at 7:41 AM, bob2 [EMAIL PROTECTED] wrote: After reading this and other similar posts I'm still confused about how to determine what exactly I need. I am a new user and do not easily have access to the internet. I do not have/use Maven. The jars listed below came

Re: Get libs without installing Maven?

2008-03-11 Thread Eelco Hillenius
On Tue, Mar 11, 2008 at 7:45 AM, bob2 [EMAIL PROTECTED] wrote: Another note: If I did what some posters suggested, such as remove wicket-velocity-1.3.1.jar, I'd get errors on startup stating failure to initialize velocity. How can you get velocity errors if you're not using velocity or

Re: Get libs without installing Maven?

2008-03-11 Thread bob2
PROTECTED] -- View this message in context: http://www.nabble.com/Get-libs-without-installing-Maven--tp13403139p15977370.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: Get libs without installing Maven?

2008-03-11 Thread Igor Vaynberg
indeed. and latest versions of maven have quiet a nice new toy C:\dev\src\wicketmvn dependency:tree [INFO] [INFO] Building Wicket [INFO]task-segment: [dependency:tree] [INFO]

Re: Get libs without installing Maven?

2007-10-26 Thread Thomas Singer
I'm having these libraries in my classpath: commons-collections-2.1.jar commons-logging-1.0.4.jar junit.jar log4j-1.2.13.jar portlet-api-1.0.jar slf4j-api-1.4.0.jar slf4j-log4j12-1.4.0.jar But the checked out code does not compile. It requires at least

Re: Get libs without installing Maven?

2007-10-26 Thread Nino Saturnino Martinez Vazquez Wael
mini maven guide... install maven place yourself in a folder and write: mvn archetype:create -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=1.3.0-beta4 -DgroupId=com.mycompany -DartifactId=myproject then maven will create a folder

Re: Get libs without installing Maven?

2007-10-26 Thread Eelco Hillenius
commons-collections-2.1.jar commons-logging-1.0.4.jar junit.jar log4j-1.2.13.jar portlet-api-1.0.jar slf4j-api-1.4.0.jar slf4j-log4j12-1.4.0.jar But the checked out code does not compile. It requires at least org.apache.portals.bridges.util.ServletPortletSessionProxy. That's what you

Re: Get libs without installing Maven?

2007-10-26 Thread Thomas Singer
Thanks, Nino. I don't want Maven to manage my project, I just want to get the libraries which are required for building and running wicket... Tom Nino Saturnino Martinez Vazquez Wael wrote: mini maven guide... install maven place yourself in a folder and write: mvn archetype:create

Re: Get libs without installing Maven?

2007-10-26 Thread Thomas Singer
Thanks, Eelco, the portals-bridges-common-1.0.3.jar was the key. Tom Eelco Hillenius wrote: commons-collections-2.1.jar commons-logging-1.0.4.jar junit.jar log4j-1.2.13.jar portlet-api-1.0.jar slf4j-api-1.4.0.jar slf4j-log4j12-1.4.0.jar But the checked out code does not compile. It requires

Re: Get libs without installing Maven?

2007-10-26 Thread Igor Vaynberg
i never said you have to use maven. you want the dependencies and want maven to download them for you, it can do that very well. like i said, simply follow the quickstart guide, generate a basic project and create a war using mvn package command. then you have a war file with all the dependencies

Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
I'm currently trying to update from 1.4beta2 to 1.4beta4 by changing the revision of our project's wicket-external (http://svn.apache.org/repos/asf/wicket/trunk/jdk-1.4/wicket/src/main/java). Unfortunately it does not build any more because it seems to require a new library. Where can I

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
No possibility? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Get libs without installing Maven?

2007-10-25 Thread Nino Saturnino Martinez Vazquez Wael
goto maven2 repo and get them from there or ask someone that has a running wicket to give you them..:) Thomas Singer wrote: No possibility? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Get libs without installing Maven?

2007-10-25 Thread Frank Bille
There is always the standard distribution, which contains binaries and sources. http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta4 Frank On 10/25/07, Thomas Singer [EMAIL PROTECTED] wrote: I'm currently trying to update from 1.4beta2 to 1.4beta4 by changing the revision of our project's

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
Maybe I'm blind, but I could not find the jars for Wicket 1.3.0beta4 (the version number in the initial posting was wrong), I just could find versions up to 1.2.6: http://repo1.maven.org/maven2/wicket/wicket/ Tom - To

Re: Get libs without installing Maven?

2007-10-25 Thread Eelco Hillenius
On 10/25/07, Thomas Singer [EMAIL PROTECTED] wrote: Maybe I'm blind, but I could not find the jars for Wicket 1.3.0beta4 (the version number in the initial posting was wrong), I just could find versions up to 1.2.6: http://repo1.maven.org/maven2/wicket/wicket/ We changed package names but

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
The binary distribution seems not to contain the dependent jars, but just the own wicket jars. Here is the list of the lib directory: wicket-1.3.0-beta4.jar wicket-auth-roles-1.3.0-beta4.jar wicket-datetime-1.3.0-beta4.jar wicket-extensions-1.3.0-beta4.jar wicket-guice-1.3.0-beta4.jar

Re: Get libs without installing Maven?

2007-10-25 Thread Thomas Singer
I only can find the wicket jars, but were are the required libraries? Should I pick the out of the pom myself or is there a more user-friendly way? Tom - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,