> > When I execute maven site:generate > > The next error happen > > __ __ > > > > | \/ |__ _Apache__ ___ > > | > > | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ > > | > > |_| |_\__,_|\_/\___|_||_| v. 1.0-beta-10 > > > > Attempting to download j2ee-1.2.jar. > > WARNING: Failed to download j2ee-1.2.jar. > > Attempting to download ejbDeployment-1.0.jar. > > WARNING: Failed to download ejbDeployment-1.0.jar. > > Attempting to download struts-1.0.jar. > > WARNING: Failed to download struts-1.0.jar. > > Attempting to download swt-1.0.jar. > > WARNING: Failed to download swt-1.0.jar. > > Attempting to download servlet-1.2.jar. > > WARNING: Failed to download servlet-1.2.jar. > > Attempting to download hibernate-2.0.jar. > > WARNING: Failed to download hibernate-2.0.jar. > > The build cannot continue because of the following unsatisfied > > dependencies: > > > > j2ee-1.2.jar > > ejbDeployment-1.0.jar > > struts-1.0.jar > > swt-1.0.jar > > servlet-1.2.jar > > hibernate-2.0.jar
> > What is wrong ? Help !!!! What is wrong is that in your project.xml you have specified these jar's yet maybe they aren't freely downloadable as part of Maven. Are they on www.ibiblio.org/maven. I know that the j2ee-1.2.jar is not there since it is licensed by SUN and they don't allow it to be distributed by Maven. You have to download the jar's yourself and put them in Maven's repository $maven.home/repository/j2ee/jars/j2ee-1.2.jar As for the other jar's you can change your 'servlet-1.2' to 'servletapi-2.3.jar' (which is on IBIBLIO). Struts exists on IBIBLIO but is struts-1.0.2.jar. swt exists on IBIBLIO but only for win32, so you need to find that one yourself. hibernate is hibernate-2.0.1.jar etc - you get the picture etc HTH -- Andy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
