I agree with the original poster. I've looked on all of the online repos, including ibiblio, and the mergere one you mention below. Tomahawk used to be under org.apache.myfaces.tomahawk. Since they split the project from core, I haven't been able to find it either.
As a workaround, you can download it directly from the apache site, and install it in your local repository or company repository. Here are the commands for each: For Local repo (this is probably the easiest workaround): mvn install:install-file -Dfile=tomahawk.jar -DgroupId=org.apache.myfaces.tomahawk -DartifactId=tomahawk -Dpackaging=jar -Dversion=1.1.2 -DgeneratePom=true For company repo if you have one: mvn deploy:deploy-file -Dfile=tomahawk.jar -DgroupId=org.apache.myfaces.tomahawk -DartifactId=tomahawk -Dpackaging=jar -Dversion=1.1.2 -DgeneratePom=true -Durl=sftp://companyrepo.ip/full_path_to_internal_files -DrepositoryId=name_of_repository Frank Russo Senior Developer FX Alliance, LLC -----Original Message----- From: Michael Heinen [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 6:16 AM To: MyFaces Discussion Subject: RE: tomahawk I don't exactly understand what your error is. I had also problems to download the libraries some time ago. I added these mirrors into the settings.xml of maven: <mirror> <id>codehaus mirror</id> <name>Mirror site of Codehaus</name> <url>http://repo.mergere.com/maven2</url> <mirrorOf>snapshots</mirrorOf> </mirror> <mirror> <id>codehaus snapshot mirror</id> <name>Mirror site of Codehaus</name> <url>http://repo1.maven.org/maven2</url> <mirrorOf>snapshots</mirrorOf> </mirror> <mirror> <id>codehaus mirror</id> <name>Mirror Site of Codehaus</name> <url>http://repo1.maven.org/maven2</url> <mirrorOf>codehaus</mirrorOf> </mirror> Does this help? -----Original Message----- From: ould neman [mailto:[EMAIL PROTECTED] Sent: Dienstag, 23. Mai 2006 12:06 To: MyFaces Discussion Subject: Re: tomahawk Michael Heinen a écrit : > See > http://myfaces.apache.org/source-repository.html > http://wiki.apache.org/myfaces/Building_With_Maven > http://wiki.apache.org/myfaces/Eclipse_IDE > > -----Original Message----- > From: ould neman [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 23. Mai 2006 11:03 > To: MyFace Mailing List > Subject: tomahawk > > Hi, > Can you tell me, how I can found the url for download tomahawk with > Maven. > please, I want a fast response. > Think's > > > > > Thank Michael Heinen for the urls but, I have in my project.xml this section, I run Maven but It can load the librairie. I am trying this url :*http://myfaces.apache.org *<dependency> <groupId>thomahawk</groupId> <artifactId>thomahawk</artifactId> <version>1.1.2</version> <type>jar</type> <url>http://myfaces.apache.org/</url> <properties> <war.bundle>true</war.bundle> </properties> </dependency>

