You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by mateamargo <ma...@gmail.com> on 2007/04/17 22:52:17 UTC

org.mozilla.javascript repo?

I'm using a project that depends on org.mozilla.javascript, but I can't find
any repository that holds it.

Anyone knows where I can find it?
Thanks,
-- 
View this message in context: http://www.nabble.com/org.mozilla.javascript-repo--tf3597494s177.html#a10047509
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: org.mozilla.javascript repo?

Posted by Thorsten Heit <th...@gmx.de>.
Hi,

> > Please take this "support request" back to the source -- the JMeter
> > folks. In particular, Tim McCune, as it seems like he is responsible
> > for this wiki page.
> > 
> > Reading the wiki page, it seems like there are a few artifacts (this
> > mozilla artifact being one) which do not exist in Central, and you
> > will need to manually install locally yourself to get things to work.
> > 
> > Wayne
> > 
> 
> I had to download the complete JMeter distribution and manually install
> each
> dependency. Apparently this org.mozilla.javascript is chunk from Rhino,
> and
> is included in Jmeter as js.jar, without version number.

In the meantime you can help yourself by creating the following pom and install it locally or deploy it to your repo:

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.mozilla.javascript</groupId>
  <artifactId>javascript</artifactId>
  <version>1.0</version>
  <distributionManagement>
    <relocation>
      <groupId>rhino</groupId>
      <artifactId>js</artifactId>
      <version>1.6R5</version>
    </relocation>
  </distributionManagement>
</project>


HTH

Thorsten

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: org.mozilla.javascript repo?

Posted by mateamargo <ma...@gmail.com>.

Wayne Fay wrote:
> 
> Please take this "support request" back to the source -- the JMeter
> folks. In particular, Tim McCune, as it seems like he is responsible
> for this wiki page.
> 
> Reading the wiki page, it seems like there are a few artifacts (this
> mozilla artifact being one) which do not exist in Central, and you
> will need to manually install locally yourself to get things to work.
> 
> Wayne
> 

I had to download the complete JMeter distribution and manually install each
dependency. Apparently this org.mozilla.javascript is chunk from Rhino, and
is included in Jmeter as js.jar, without version number.
-- 
View this message in context: http://www.nabble.com/org.mozilla.javascript-repo--tf3597494s177.html#a10060317
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: org.mozilla.javascript repo?

Posted by Wayne Fay <wa...@gmail.com>.
Please take this "support request" back to the source -- the JMeter
folks. In particular, Tim McCune, as it seems like he is responsible
for this wiki page.

Reading the wiki page, it seems like there are a few artifacts (this
mozilla artifact being one) which do not exist in Central, and you
will need to manually install locally yourself to get things to work.

Wayne

On 4/18/07, mateamargo <ma...@gmail.com> wrote:
>
>
> Wayne Fay wrote:
> >
> > Where did this pom come from? I'd assume this artifact is served by
> > another repo (not central) or requires manual installation (via mvn
> > install:install-file) of the artifact.
> >
> > Wayne
> >
>
> Reading this tutorial:
> http://wiki.apache.org/jakarta-jmeter/JMeterMavenPlugin
> If you take a look at the POM link:
> http://wiki.apache.org/jakarta-jmeter-data/attachments/JMeterMavenPlugin/attachments/jmeter-2.2.pom
> you can see that dependency.
> --
> View this message in context: http://www.nabble.com/org.mozilla.javascript-repo--tf3597494s177.html#a10058498
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: org.mozilla.javascript repo?

Posted by mateamargo <ma...@gmail.com>.

Wayne Fay wrote:
> 
> Where did this pom come from? I'd assume this artifact is served by
> another repo (not central) or requires manual installation (via mvn
> install:install-file) of the artifact.
> 
> Wayne
> 

Reading this tutorial:
http://wiki.apache.org/jakarta-jmeter/JMeterMavenPlugin
If you take a look at the POM link:
http://wiki.apache.org/jakarta-jmeter-data/attachments/JMeterMavenPlugin/attachments/jmeter-2.2.pom
you can see that dependency.
-- 
View this message in context: http://www.nabble.com/org.mozilla.javascript-repo--tf3597494s177.html#a10058498
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: org.mozilla.javascript repo?

Posted by Wayne Fay <wa...@gmail.com>.
Where did this pom come from? I'd assume this artifact is served by
another repo (not central) or requires manual installation (via mvn
install:install-file) of the artifact.

Wayne

On 4/17/07, mateamargo <ma...@gmail.com> wrote:
>
>
> Chris Hilton-2 wrote:
> >
> > I think you're looking for the rhino:js artifacts.
> >
> > http://www.mvnrepository.com/artifact/rhino/js
> >
> > Chris
> >
>
> Well, not exactly.
> I have a pom with this dependency:
>
>                 <dependency>
>                         <groupId>org.mozilla.javascript</groupId>
>                         <artifactId>javascript</artifactId>
>                         <version>1.0</version>
>                 </dependency>
>
> and I was wondering where I can find the repo.
> --
> View this message in context: http://www.nabble.com/org.mozilla.javascript-repo--tf3597494s177.html#a10047715
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: org.mozilla.javascript repo?

Posted by mateamargo <ma...@gmail.com>.

Chris Hilton-2 wrote:
> 
> I think you're looking for the rhino:js artifacts.
> 
> http://www.mvnrepository.com/artifact/rhino/js
> 
> Chris 
> 

Well, not exactly.
I have a pom with this dependency:

		<dependency>
			<groupId>org.mozilla.javascript</groupId>
			<artifactId>javascript</artifactId>
			<version>1.0</version>
		</dependency>

and I was wondering where I can find the repo.
-- 
View this message in context: http://www.nabble.com/org.mozilla.javascript-repo--tf3597494s177.html#a10047715
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: org.mozilla.javascript repo?

Posted by Chris Hilton <ch...@alterpoint.com>.
I think you're looking for the rhino:js artifacts.

http://www.mvnrepository.com/artifact/rhino/js

Chris 

> -----Original Message-----
> From: mateamargo [mailto:mateamargo@gmail.com] 
> Sent: Tuesday, 17 April, 2007 15:52
> To: users@maven.apache.org
> Subject: org.mozilla.javascript repo?
> 
> 
> I'm using a project that depends on org.mozilla.javascript, 
> but I can't find any repository that holds it.
> 
> Anyone knows where I can find it?
> Thanks,
> --
> View this message in context: 
> http://www.nabble.com/org.mozilla.javascript-repo--tf3597494s1
> 77.html#a10047509
> Sent from the Maven - Users mailing list archive at Nabble.com.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org