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 04:13:39 UTC

when are the 1.1.3 jar files going into the Maven repo?

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: when are the 1.1.3 jar files going into the Maven repo?

Posted by Wendy Smoak <ws...@gmail.com>.
On 6/21/06, Matt Raible <mr...@gmail.com> wrote:

> 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.

That's next on my list. :)  I need the release manager to do the
signatures, then I'll get them deployed to the Apache repo and synced.

Sorry for the delay on this one.  We've pretty much worn Sean out as
far as releases, but we have some new volunteers, which should make it
possible to distribute the work and make sure that if one person gets
busy with other things, there will be someone available to finish it.

Thanks for your patience!
-- 
Wendy

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

Posted by Rick <ri...@arc-mind.com>.
Thanks.

-----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?
>
>





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

Posted by Rick <ri...@arc-mind.com>.
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: when are the 1.1.3 jar files going into the Maven repo?

Posted by Matt Raible <mr...@gmail.com>.
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?
>
>