That led me down the path that helped me fix the problem.
The group ids changed a bit (somehow, somewhere)
This is what worked in my pom.xml file for the sake of a good google search
result for the next soul later:
...
<repositories>
<repository>
<id>apache-repo</id>
<name>apache-repo</name>
<url>http://myfaces.zones.apache.org/dist/maven-repository</url>
</repository>
<repository>
<id>ibiblio</id>
<name>ibiblio</name>
<url>http://www.ibiblio.org/maven2</url>
</repository>
</repositories>
...
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-impl</artifactId>
<version>1.1.3</version>
<scope>compile</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.myfaces.tomahawk</groupId>
<artifactId>tomahawk</artifactId>
<version>1.1.3</version>
<scope>compile</scope>
<type>jar</type>
</dependency>
---Rick Hightower
I spoke with Carlos and he said the Apache maven repo gets synced to Ibibio
so I didn't know until you sent me that Jira bit.
-----Original Message-----
From: Matt Raible [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 21, 2006 8:09 PM
To: MyFaces Discussion
Subject: Re: when are the 1.1.3 jar files going into the Maven repo?
http://jira.codehaus.org/browse/MEV-415
On 6/21/06, Rick <[EMAIL PROTECTED]> wrote:
>
>
>
>
> The following were not found in the Maven repo.
>
>
>
> <dependency>
>
> <groupId>org.apache.myfaces</groupId>
>
> <artifactId>myfaces-impl</artifactId>
>
> <version>1.1.3</version>
>
> <scope>compile</scope>
>
> <type>jar</type>
>
> </dependency>
>
>
>
> <dependency>
>
> <groupId>org.apache.myfaces</groupId>
>
> <artifactId>tomahawk</artifactId>
>
> <version>1.1.3</version>
>
> <scope>compile</scope>
>
> <type>jar</type>
>
> </dependency>
>
>
>
>
>
> You guys are using Maven2 now... right?
>
>