You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Rick <ri...@arc-mind.com> on 2006/06/22 05:37:28 UTC

Sample Maven setup.... RE: when are the 1.1.3 jar files going into the Maven repo?

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:mraible@gmail.com] 
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 <ri...@arc-mind.com> 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?
>
>



RE: Sample Maven setup.... RE: when are the 1.1.3 jar files going into the Maven repo?

Posted by Rick <ri...@arc-mind.com>.
I need to add the api to my sample....

	<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.core</groupId>
			<artifactId>myfaces-api</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>



-----Original Message-----
From: Rick [mailto:ricks_mailinglists@arc-mind.com] 
Sent: Wednesday, June 21, 2006 8:37 PM
To: 'MyFaces Discussion'
Subject: Sample Maven setup.... RE: when are the 1.1.3 jar files going into
the Maven repo?

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:mraible@gmail.com] 
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 <ri...@arc-mind.com> 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?
>
>